diff options
author | Tapani Pälli <[email protected]> | 2013-02-20 13:00:07 +0200 |
---|---|---|
committer | Chad Versace <[email protected]> | 2013-02-25 09:17:20 -0800 |
commit | 331967c7733c1146bd6b3a11908d9fdd6b213d72 (patch) | |
tree | 2812b63c64ff3d429d5a7377a4c63e96e5352fe9 /src | |
parent | 533dc3b69098d4d76545b088197fbc864057c78d (diff) |
mesa: add missing case in _mesa_GetTexParameterfv()
missing case GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES is required
by OES_EGL_image_external extension.
Note: This is a candidate for the stable branches.
Signed-off-by: Tapani Pälli <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Reviewed-by: Chad Versace <[email protected]>
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/texparam.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/texparam.c b/src/mesa/main/texparam.c index b6afd35ba23..bc66bb36dbf 100644 --- a/src/mesa/main/texparam.c +++ b/src/mesa/main/texparam.c @@ -1444,6 +1444,12 @@ _mesa_GetTexParameterfv( GLenum target, GLenum pname, GLfloat *params ) *params = (GLfloat) obj->Immutable; break; + case GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES: + if (!_mesa_is_gles(ctx) || !ctx->Extensions.OES_EGL_image_external) + goto invalid_pname; + *params = obj->RequiredTextureImageUnits; + break; + case GL_TEXTURE_SRGB_DECODE_EXT: if (!ctx->Extensions.EXT_texture_sRGB_decode) goto invalid_pname; |