WIP Render Queue

This commit is contained in:
2014-05-11 01:46:02 +02:00
parent 7c18d0c778
commit 41177581c6
5 changed files with 96 additions and 1 deletions
+5 -1
View File
@@ -8,8 +8,12 @@ namespace Components
struct Camera : Component
{
Camera() : FOV(glm::radians(45.f)), NearClip(0.1f), FarClip(100.f) { }
Camera()
: FOV(glm::radians(45.f))
, NearClip(0.1f)
, FarClip(100.f) { }
std::string Viewport;
float FOV;
float NearClip;
float FarClip;