This commit is contained in:
2016-03-02 18:06:20 +01:00
parent edf481b4d7
commit ffa9d7e607
14 changed files with 306 additions and 19 deletions
+2 -1
View File
@@ -1,9 +1,11 @@
#ifndef Texture_h__
#define Texture_h__
#include <boost/filesystem.hpp>
#include "../OpenGL.h"
#include "BaseTexture.h"
#include "PNG.h"
#include "DDS.h"
class Texture : public BaseTexture
{
@@ -18,7 +20,6 @@ public:
void Bind(GLenum textureUnit = GL_TEXTURE0);
GLuint m_Texture = 0;
unsigned char* Data = nullptr;
};