diff options
Diffstat (limited to 'src/texture.cpp')
-rw-r--r-- | src/texture.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/texture.cpp b/src/texture.cpp index 0f01c83..bdac28e 100644 --- a/src/texture.cpp +++ b/src/texture.cpp @@ -46,7 +46,7 @@ namespace Texture{ GLuint loadTexture(std::string fileName) { SDL_Surface *image; - GLuint object = 0; + static GLuint object = 0; // check if texture is already loaded for(auto &t : LoadedTexture) { @@ -71,9 +71,8 @@ namespace Texture{ /* * Load texture through OpenGL. */ - - glGenTextures(1,&object); // Turns "object" into a texture - glBindTexture(GL_TEXTURE_2D,object); // Binds "object" to the top of the stack + //glGenTextures(1,&object); // Turns "object" into a texture + glBindTexture(GL_TEXTURE_2D,++object); // Binds "object" to the top of the stack glPixelStoref(GL_UNPACK_ALIGNMENT,1); glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); // Sets the "min" filter |