aboutsummaryrefslogtreecommitdiffstats
path: root/yage/core/texture.h
diff options
context:
space:
mode:
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