summaryrefslogtreecommitdiff
path: root/texture.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2021-01-17 19:36:30 +0000
committerDan Goodliffe <dan@randomdan.homeip.net>2021-01-17 22:16:48 +0000
commit0bf4ad9e4a9e1c97e92aa23a365405dfef89bd7c (patch)
tree68a80976a247836bbb1eecc835af437e3489fbb7 /texture.h
parentFirst cut modernizing and sanitizing (diff)
downloadilt-0bf4ad9e4a9e1c97e92aa23a365405dfef89bd7c.tar.bz2
ilt-0bf4ad9e4a9e1c97e92aa23a365405dfef89bd7c.tar.xz
ilt-0bf4ad9e4a9e1c97e92aa23a365405dfef89bd7c.zip
Big reshuffle
Fixes code quality warnings now picked up.
Diffstat (limited to 'texture.h')
-rw-r--r--texture.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/texture.h b/texture.h
deleted file mode 100644
index 9955f01..0000000
--- a/texture.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef TEXTURE_H
-#define TEXTURE_H
-
-#include <GL/glew.h>
-#include <string>
-
-class Texture {
-public:
- explicit Texture(const std::string & fileName);
-
- Texture(const Texture &) = delete;
- void operator=(const Texture &) = delete;
-
- virtual ~Texture();
-
- void Bind() const;
-
-protected:
-private:
- GLuint m_texture;
-};
-
-#endif