diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-27 21:06:31 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-06-27 21:06:31 -0400 |
commit | 00f633afb62ed6914205639b44dcdaf839a2c2f7 (patch) | |
tree | 5ec98271bb09cd8f1c77c40a8699e0deaadeb942 /src/texture.cpp | |
parent | b202b0d3952e546aaa6d64d42886d9c926f6bd76 (diff) |
redid trees, fixed indoors?
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 |