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