diff options
author | Brian Paul <[email protected]> | 2011-01-25 18:07:45 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2011-01-25 18:53:00 -0700 |
commit | f2dd11817a66b6254e1533398dc53f1bc51953be (patch) | |
tree | 55f1c278432f54dc9b63caf3a5861f5e8d3abcf0 /src/mesa/main/texparam.c | |
parent | 0f4b2a0a23650d8f773c53d84cb2ead1f6d4fc8e (diff) |
mesa: add checks for GL_EXT_texture_array
In case the driver enables GL_MESA_texture_array but not the EXT version.
Diffstat (limited to 'src/mesa/main/texparam.c')
-rw-r--r-- | src/mesa/main/texparam.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mesa/main/texparam.c b/src/mesa/main/texparam.c index 4909b76cb76..62922f3ac99 100644 --- a/src/mesa/main/texparam.c +++ b/src/mesa/main/texparam.c @@ -116,12 +116,14 @@ get_texobj(struct gl_context *ctx, GLenum target, GLboolean get) } break; case GL_TEXTURE_1D_ARRAY_EXT: - if (ctx->Extensions.MESA_texture_array) { + if (ctx->Extensions.MESA_texture_array || + ctx->Extensions.EXT_texture_array) { return texUnit->CurrentTex[TEXTURE_1D_ARRAY_INDEX]; } break; case GL_TEXTURE_2D_ARRAY_EXT: - if (ctx->Extensions.MESA_texture_array) { + if (ctx->Extensions.MESA_texture_array || + ctx->Extensions.EXT_texture_array) { return texUnit->CurrentTex[TEXTURE_2D_ARRAY_INDEX]; } break; |