diff options
author | Brian Paul <[email protected]> | 2011-01-26 08:01:15 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-01-26 08:01:31 -0700 |
commit | 684c66bb8b8cdaa7fc18b64a6f739ad70a10cd54 (patch) | |
tree | b7bfe3be9f1a34339d7bce6f808412477aeb563f /src/mesa | |
parent | c7c733545a19aab3e2b954153b9348ebe3147368 (diff) |
mesa: fix MESA/EXT typo
Spotted by Bernd Buschinski.
Diffstat (limited to 'src/mesa')
-rw-r--r-- | src/mesa/main/teximage.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/teximage.c b/src/mesa/main/teximage.c index 7f630e23c7a..1f2ad7f266b 100644 --- a/src/mesa/main/teximage.c +++ b/src/mesa/main/teximage.c @@ -1383,7 +1383,7 @@ target_can_be_compressed(const struct gl_context *ctx, GLenum target, case GL_PROXY_TEXTURE_2D_ARRAY_EXT: case GL_TEXTURE_2D_ARRAY_EXT: return (ctx->Extensions.MESA_texture_array || - ctx->Extensions.MESA_texture_array); + ctx->Extensions.EXT_texture_array); default: return GL_FALSE; } |