aboutsummaryrefslogtreecommitdiffstats
path: root/src/Texture.cpp
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2015-11-13 12:51:07 -0500
committerdrumsetmonkey <abelleisle@roadrunner.com>2015-11-13 12:51:07 -0500
commit2efd19fa9cd3d24538242cbea828830ac07c324f (patch)
tree624f5b79391a676aec9abc5e174d6238ccd54459 /src/Texture.cpp
parenta32339dc700759ab44a360953c9c24d009b11ecc (diff)
Makefile supports 32 and 64 bit
Diffstat (limited to 'src/Texture.cpp')
-rw-r--r--src/Texture.cpp11
1 files changed, 10 insertions, 1 deletions
diff --git a/src/Texture.cpp b/src/Texture.cpp
index 99d6ae7..01a19aa 100644
--- a/src/Texture.cpp
+++ b/src/Texture.cpp
@@ -10,6 +10,7 @@ namespace Texture{
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_LINEAR); //sets the "min" filter
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR); //the the "max" filter of the stack
@@ -17,7 +18,15 @@ namespace Texture{
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); //Wrap the texture to the matrix
glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); //Wrap the texutre to the matrix
- glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, image->w, image->h, 0, GL_RGBA, GL_UNSIGNED_BYTE, image->pixels); //sets the texture to the image file loaded above
+ glTexImage2D( GL_TEXTURE_2D,
+ 0,
+ GL_RGBA,
+ image->w,
+ image->h,
+ 0,
+ GL_RGBA,
+ GL_UNSIGNED_BYTE,
+ image->pixels); //sets the texture to the image file loaded above
SDL_FreeSurface(image); //Free surface
return object;