diff options
author | Marta Lofstedt <[email protected]> | 2015-08-12 11:57:39 +0200 |
---|---|---|
committer | Tapani Pälli <[email protected]> | 2015-08-19 13:32:30 +0300 |
commit | 3df7856b4625f21ebf5465bad2556583b808c8bf (patch) | |
tree | 8b9beab5214dd4ea7ef35c7a4204790f3bf746e9 /src/mesa | |
parent | 3b1e283d884b0c5c93c32d3e4a0325fbf2e96234 (diff) |
mesa/main: Add GL_IMAGE_FORMAT_COMPATIBILITY_TYPE to glGetTexParameterfv
According to Open GL ES 3.1 specification, section 8.10.2
GL_IMAGE_FORMAT_COMPATIBILITY_TYPE should be supported by
glGetTexParameterfv.
Signed-off-by: Marta Lofstedt <[email protected]>
Reviewed-by: Francisco Jerez <[email protected]>
Diffstat (limited to 'src/mesa')
-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 5500eed6ca8..16739f1779b 100644 --- a/src/mesa/main/texparam.c +++ b/src/mesa/main/texparam.c @@ -1908,6 +1908,12 @@ get_tex_parameterfv(struct gl_context *ctx, *params = (GLfloat) obj->Sampler.sRGBDecode; break; + case GL_IMAGE_FORMAT_COMPATIBILITY_TYPE: + if (!ctx->Extensions.ARB_shader_image_load_store) + goto invalid_pname; + *params = (GLfloat) obj->ImageFormatCompatibilityType; + break; + default: goto invalid_pname; } |