From d4d9e0d35a1609c72ea65df95e9c3ce5706e221f Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Sat, 14 Sep 2019 01:10:41 -0400 Subject: Added texture size and offset data --- src/texture.hpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src') 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 #include +#include #include @@ -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); }; -- cgit v1.2.3