Commit 0c65c182 authored by Alexandre Julliard's avatar Alexandre Julliard

glu32: Remove ARB_texture_cube_map extension ifdef since it's not defined in wgl.h.

parent ace83062
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment