aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-14 01:10:41 -0400
committerAndy Belle-Isle <drumsetmonkey@gmail.com>2019-09-14 01:10:41 -0400
commitd4d9e0d35a1609c72ea65df95e9c3ce5706e221f (patch)
treed543d388b5757ddca0aab6a55611694ffd4baca0
parent0e19992b820158f8e9c0fc16ddc372a5ea596f53 (diff)
Added texture size and offset data
-rw-r--r--src/texture.hpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/texture.hpp b/src/texture.hpp
index 25fed54..8cfd68c 100644
--- a/src/texture.hpp
+++ b/src/texture.hpp
@@ -24,6 +24,7 @@
#include <GL/glew.h>
#include <SDL2/SDL_opengl.h>
+#include <glm/glm.hpp>
#include <string>
@@ -34,6 +35,10 @@ public:
GLuint tex = 0;
int width;
int height;
+
+ glm::vec2 offset = glm::vec2(0);
+ glm::vec2 offsetSize = glm::vec2(1);
+
Texture() {};
Texture(std::string);
};