Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
RenderViewData.hpp
1 #pragma once
2
3#include <Common/Math.hpp>
4
5namespace Grindstone::Rendering {
7 public:
8 Math::Matrix4 projectionMatrix;
9 Math::Matrix4 viewMatrix;
10 Math::Float2 renderTargetOffset;
11 Math::Float2 renderTargetSize;
12
13 }; // struct RenderViewData
14} // namespace Grindstone::Rendering
Definition FloatVectors.cs:7
Definition RenderViewData.hpp:6