aboutsummaryrefslogtreecommitdiffstats
path: root/include/yage/gl_texture.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/yage/gl_texture.hpp')
-rw-r--r--include/yage/gl_texture.hpp13
1 files changed, 13 insertions, 0 deletions
diff --git a/include/yage/gl_texture.hpp b/include/yage/gl_texture.hpp
new file mode 100644
index 00000000..808d86b1
--- /dev/null
+++ b/include/yage/gl_texture.hpp
@@ -0,0 +1,13 @@
+#ifndef GL_TEXTURE_HPP
+#define GL_TEXTURE_HPP
+
+#include <GL/glew.h>
+
+struct GlTexture
+{
+ GLuint id;
+ int width;
+ int height;
+};
+
+#endif