diff options
author | Tapani Pälli <tapani.palli@intel.com> | 2013-02-20 13:00:07 +0200 |
---|---|---|
committer | Andreas Boll <andreas.boll.dev@gmail.com> | 2013-04-17 12:44:11 +0200 |
commit | 430282cb78de2b3cf1b53ac2156de0064dff3602 (patch) | |
tree | 5d3ac0e28a7058456e29f4c87f2f3f425bee4a9f | |
parent | f341c6c6b0662e5a34dbd80b56690c97348a2347 (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 <tapani.palli@intel.com>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Chad Versace <chad.versace@linux.intel.com>
(cherry picked from commit 331967c7733c1146bd6b3a11908d9fdd6b213d72)
-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 7a5531773f..f13288ef36 100644 --- a/src/mesa/main/texparam.c +++ b/src/mesa/main/texparam.c @@ -1448,6 +1448,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; |