diff options
author | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-14 01:10:41 -0400 |
---|---|---|
committer | Andy Belle-Isle <drumsetmonkey@gmail.com> | 2019-09-14 01:10:41 -0400 |
commit | d4d9e0d35a1609c72ea65df95e9c3ce5706e221f (patch) | |
tree | d543d388b5757ddca0aab6a55611694ffd4baca0 /src | |
parent | 0e19992b820158f8e9c0fc16ddc372a5ea596f53 (diff) |
Added texture size and offset data
Diffstat (limited to 'src')
-rw-r--r-- | src/texture.hpp | 5 |
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); }; |