From: Ingo Ruhnke Date: Sun, 6 Dec 2009 22:44:50 +0000 (+0000) Subject: Replaced GL_ARB_texture_non_power_of_two with proper GLEW_ARB_texture_non_power_of_two X-Git-Url: https://git.verplant.org/?a=commitdiff_plain;h=058d5781c82f84a42144f450cef8505f7dbe5404;p=supertux.git Replaced GL_ARB_texture_non_power_of_two with proper GLEW_ARB_texture_non_power_of_two SVN-Revision: 6189 --- diff --git a/src/video/gl/gl_renderer.cpp b/src/video/gl/gl_renderer.cpp index b578977ad..7e6ce77ba 100644 --- a/src/video/gl/gl_renderer.cpp +++ b/src/video/gl/gl_renderer.cpp @@ -180,7 +180,7 @@ GLRenderer::GLRenderer() : throw std::runtime_error(out.str()); } log_info << "Using GLEW " << glewGetString(GLEW_VERSION) << std::endl; - log_info << "GL_ARB_texture_non_power_of_two: " << GL_ARB_texture_non_power_of_two << std::endl; + log_info << "GLEW_ARB_texture_non_power_of_two: " << GLEW_ARB_texture_non_power_of_two << std::endl; #endif } diff --git a/src/video/gl/gl_texture.cpp b/src/video/gl/gl_texture.cpp index ca56a9800..c703771e4 100644 --- a/src/video/gl/gl_texture.cpp +++ b/src/video/gl/gl_texture.cpp @@ -77,7 +77,7 @@ GLTexture::GLTexture(SDL_Surface* image) : texture_width = next_power_of_two(image->w); texture_height = next_power_of_two(image->h); #else - if (GL_ARB_texture_non_power_of_two) + if (GLEW_ARB_texture_non_power_of_two) { texture_width = image->w; texture_height = image->h;