aboutsummaryrefslogtreecommitdiff
path: root/source/Shader.hpp
diff options
context:
space:
mode:
authorhnOsmium0001 <[email protected]>2022-04-30 13:55:20 -0700
committerhnOsmium0001 <[email protected]>2022-04-30 13:55:20 -0700
commit242317c1f7f2a6abdfbdbc99d5297539bbdc842f (patch)
tree4ccaae8f20b9b2534022419eb9eb7744b913cac7 /source/Shader.hpp
parent5f467c899d1024b01c0d7ba86d9ac2f28878eb55 (diff)
Add ImGuizmo for GameObjects, start to make things actually render
Diffstat (limited to 'source/Shader.hpp')
-rw-r--r--source/Shader.hpp7
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();