Add missing _EXT suffix to 2D_ARRAY target enums.

This commit is contained in:
Ian Romanick
2007-05-17 11:54:22 -07:00
parent 817181ea50
commit d834a870e6
+2 -2
View File
@@ -1398,8 +1398,8 @@ target_can_be_compressed(GLcontext *ctx, GLenum target)
(target >= GL_TEXTURE_CUBE_MAP_POSITIVE_X &&
target <= GL_TEXTURE_CUBE_MAP_NEGATIVE_Z))))
|| ((ctx->Extensions.MESA_texture_array &&
((target == GL_PROXY_TEXTURE_2D_ARRAY) ||
(target == GL_TEXTURE_2D_ARRAY)))));
((target == GL_PROXY_TEXTURE_2D_ARRAY_EXT) ||
(target == GL_TEXTURE_2D_ARRAY_EXT)))));
}