summaryrefslogtreecommitdiff
path: root/gfx/models/texture.h
diff options
context:
space:
mode:
Diffstat (limited to 'gfx/models/texture.h')
-rw-r--r--gfx/models/texture.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/gfx/models/texture.h b/gfx/models/texture.h
new file mode 100644
index 0000000..6ebf88d
--- /dev/null
+++ b/gfx/models/texture.h
@@ -0,0 +1,23 @@
+#ifndef TEXTURE_H
+#define TEXTURE_H
+
+#include <GL/glew.h>
+#include <special_members.hpp>
+#include <string>
+
+class Texture {
+public:
+ explicit Texture(const std::string & fileName);
+
+ virtual ~Texture();
+
+ NO_COPY(Texture);
+ NO_MOVE(Texture);
+
+ void Bind() const;
+
+private:
+ GLuint m_texture;
+};
+
+#endif