aboutsummaryrefslogtreecommitdiffstats
path: root/yage/core/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/core/texture.h
parent022a4bdd81332ce67d799be6a06afb42ae45ac2e (diff)
downloadYAGE-f949692714e72a0e2d45ebb6a5d698424ab71dee.tar.gz
YAGE-f949692714e72a0e2d45ebb6a5d698424ab71dee.zip
[Broken] Reorganising and fixing.
Diffstat (limited to 'yage/core/texture.h')
-rw-r--r--yage/core/texture.h32
1 files changed, 0 insertions, 32 deletions
diff --git a/yage/core/texture.h b/yage/core/texture.h
deleted file mode 100644
index aec7b906..00000000
--- a/yage/core/texture.h
+++ /dev/null
@@ -1,32 +0,0 @@
-/** ---------------------------------------------------------------------------
- * @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