From 0c65c1824afa5731a3cf8792c03b2e7f5b295568 Mon Sep 17 00:00:00 2001 From: Alexandre Julliard Date: Tue, 25 Apr 2017 08:55:07 +0200 Subject: [PATCH] glu32: Remove ARB_texture_cube_map extension ifdef since it's not defined in wgl.h. Signed-off-by: Alexandre Julliard --- dlls/glu32/mipmap.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/dlls/glu32/mipmap.c b/dlls/glu32/mipmap.c index f8ffda23764..87d4770d596 100644 --- a/dlls/glu32/mipmap.c +++ b/dlls/glu32/mipmap.c @@ -3372,7 +3372,6 @@ static void closestFit(GLenum target, GLint width, GLint height, internalFormat, widthAtLevelOne,heightAtLevelOne,0,format,type,NULL); } else -#if defined(GL_ARB_texture_cube_map) if ((target == GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB) || (target == GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB) || (target == GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB) || @@ -3384,7 +3383,6 @@ static void closestFit(GLenum target, GLint width, GLint height, internalFormat, widthAtLevelOne,heightAtLevelOne,0,format,type,NULL); } else -#endif /* GL_ARB_texture_cube_map */ { assert(target == GL_TEXTURE_1D || target == GL_PROXY_TEXTURE_1D); proxyTarget = GL_PROXY_TEXTURE_1D;