diff options
author | hnOsmium0001 <[email protected]> | 2022-04-30 13:55:20 -0700 |
---|---|---|
committer | hnOsmium0001 <[email protected]> | 2022-04-30 13:55:20 -0700 |
commit | 242317c1f7f2a6abdfbdbc99d5297539bbdc842f (patch) | |
tree | 4ccaae8f20b9b2534022419eb9eb7744b913cac7 /source/Shader.hpp | |
parent | 5f467c899d1024b01c0d7ba86d9ac2f28878eb55 (diff) |
Add ImGuizmo for GameObjects, start to make things actually render
Diffstat (limited to 'source/Shader.hpp')
-rw-r--r-- | source/Shader.hpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/source/Shader.hpp b/source/Shader.hpp index 15290e2..602b0db 100644 --- a/source/Shader.hpp +++ b/source/Shader.hpp @@ -91,9 +91,10 @@ private: GLuint mProgram = 0; public: - GLuint autofillLoc_Transform = Tags::kInvalidLocation; - GLuint autofillLoc_Time = Tags::kInvalidLocation; - GLuint autofillLoc_DeltaTime = Tags::kInvalidLocation; + GLuint autofill_Transform = Tags::kInvalidLocation; + GLuint autofill_Time = Tags::kInvalidLocation; + GLuint autofill_DeltaTime = Tags::kInvalidLocation; + GLuint autofill_TextureAtlas = Tags::kInvalidLocation; public: Shader(); |