diff options
author | Ian Romanick <[email protected]> | 2007-05-17 11:54:22 -0700 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2007-05-17 11:54:22 -0700 |
commit | d834a870e600684382b50d202a2bfc6d98cf6a0b (patch) | |
tree | 08a065a3c24838040f8e7e4a57f46130b2ecdf0d /src/mesa/main | |
parent | 817181ea5044b222f7612a425562bbc9313d5c75 (diff) |
Add missing _EXT suffix to 2D_ARRAY target enums.
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/teximage.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index 766dad4d5f7..1f4c9f4722c 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -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))))); } |