From 058d5781c82f84a42144f450cef8505f7dbe5404 Mon Sep 17 00:00:00 2001 From: Ingo Ruhnke Date: Sun, 6 Dec 2009 22:44:50 +0000 Subject: [PATCH] Replaced GL_ARB_texture_non_power_of_two with proper GLEW_ARB_texture_non_power_of_two SVN-Revision: 6189 --- src/video/gl/gl_renderer.cpp | 2 +- src/video/gl/gl_texture.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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; -- 2.11.0