summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/texparam.c
diff options
context:
space:
mode:
authorMarta Lofstedt <marta.lofstedt@intel.com>2015-08-12 11:57:39 +0200
committerTapani Pälli <tapani.palli@intel.com>2015-08-19 13:32:30 +0300
commit3df7856b4625f21ebf5465bad2556583b808c8bf (patch)
tree8b9beab5214dd4ea7ef35c7a4204790f3bf746e9 /src/mesa/main/texparam.c
parent3b1e283d884b0c5c93c32d3e4a0325fbf2e96234 (diff)
downloadexternal_mesa3d-3df7856b4625f21ebf5465bad2556583b808c8bf.zip
external_mesa3d-3df7856b4625f21ebf5465bad2556583b808c8bf.tar.gz
external_mesa3d-3df7856b4625f21ebf5465bad2556583b808c8bf.tar.bz2
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 <marta.lofstedt@linux.intel.com> Reviewed-by: Francisco Jerez <currojerez@riseup.net>
Diffstat (limited to 'src/mesa/main/texparam.c')
-rw-r--r--src/mesa/main/texparam.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/main/texparam.c b/src/mesa/main/texparam.c
index 5500eed..16739f1 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;
}