From 7f32456736bb2c5226dd4846b61117f49276c3ce Mon Sep 17 00:00:00 2001 From: Mark Vejvoda Date: Thu, 28 Oct 2010 22:07:44 +0000 Subject: [PATCH] - changed default texture compression to non st3 for now --- source/shared_lib/sources/graphics/gl/texture_gl.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/shared_lib/sources/graphics/gl/texture_gl.cpp b/source/shared_lib/sources/graphics/gl/texture_gl.cpp index c8be4dcd3..fe172aab5 100644 --- a/source/shared_lib/sources/graphics/gl/texture_gl.cpp +++ b/source/shared_lib/sources/graphics/gl/texture_gl.cpp @@ -49,12 +49,12 @@ GLint toCompressionFormatGl(GLint format) { return GL_COMPRESSED_LUMINANCE; case GL_RGB: case GL_RGB8: - //return GL_COMPRESSED_RGB; - return GL_COMPRESSED_RGB_S3TC_DXT1_EXT; + return GL_COMPRESSED_RGB; + //return GL_COMPRESSED_RGB_S3TC_DXT1_EXT; case GL_RGBA: case GL_RGBA8: - //return GL_COMPRESSED_RGBA; - return GL_COMPRESSED_RGBA_S3TC_DXT5_EXT; + return GL_COMPRESSED_RGBA; + //return GL_COMPRESSED_RGBA_S3TC_DXT5_EXT; case GL_ALPHA: case GL_ALPHA8: return GL_COMPRESSED_ALPHA;