aboutsummaryrefslogtreecommitdiffstats
path: root/yage/data/texture.h
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-12-25 13:54:09 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-12-25 13:54:09 +0000
commitf949692714e72a0e2d45ebb6a5d698424ab71dee (patch)
treecfab638d8c4d35c297e981773cfee1a9af3490ee /yage/data/texture.h
parent022a4bdd81332ce67d799be6a06afb42ae45ac2e (diff)
downloadYAGE-f949692714e72a0e2d45ebb6a5d698424ab71dee.tar.gz
YAGE-f949692714e72a0e2d45ebb6a5d698424ab71dee.zip
[Broken] Reorganising and fixing.
Diffstat (limited to 'yage/data/texture.h')
-rw-r--r--yage/data/texture.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/yage/data/texture.h b/yage/data/texture.h
new file mode 100644
index 00000000..aec7b906
--- /dev/null
+++ b/yage/data/texture.h
@@ -0,0 +1,32 @@
+/** ---------------------------------------------------------------------------
+ * @file: texture.h
+ *
+ * Copyright (c) 2017 Yann Herklotz Grave <ymherklotz@gmail.com>
+ * MIT License, see LICENSE file for more details.
+ * ----------------------------------------------------------------------------
+ */
+
+#ifndef YAGE_CORE_TEXTURE_H
+#define YAGE_CORE_TEXTURE_H
+
+#include <glad/glad.h>
+
+namespace yage
+{
+
+struct Texture {
+ GLuint id;
+ int width;
+ int height;
+
+ Texture() : id(0), width(0), height(0) {}
+
+ Texture(GLuint id_i, int width_i, int height_i)
+ : id(id_i), width(width_i), height(height_i)
+ {
+ }
+};
+
+} // namespace yage
+
+#endif