summaryrefslogtreecommitdiffstats
path: root/src/mapi
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2016-05-04 14:02:30 -0600
committerBrian Paul <brianp@vmware.com>2016-05-04 14:49:39 -0600
commitbe5010c4b8635d0292404ac58ed0436ba6637579 (patch)
tree7738f5c3c4644bce3dbf4b00f10e3ff005022a13 /src/mapi
parent54d203a319cbe33461b3c1872722cea10adc337a (diff)
downloadexternal_mesa3d-be5010c4b8635d0292404ac58ed0436ba6637579.zip
external_mesa3d-be5010c4b8635d0292404ac58ed0436ba6637579.tar.gz
external_mesa3d-be5010c4b8635d0292404ac58ed0436ba6637579.tar.bz2
glapi: fix parameter type for GetSamplerParameterIuivEXT() in es_EXT.xml
The function returns GLuint, not GLfloat values. v2: also fix the OES function Cc: "11.2" <mesa-stable@lists.freedesktop.org> Reviewed-by: Charmaine Lee <charmainel@vmware.com> Reviewed-by: Ilia Mirkin <imirkin@alum.mit.edu>
Diffstat (limited to 'src/mapi')
-rw-r--r--src/mapi/glapi/gen/es_EXT.xml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mapi/glapi/gen/es_EXT.xml b/src/mapi/glapi/gen/es_EXT.xml
index bf67eae..ce4c4c4 100644
--- a/src/mapi/glapi/gen/es_EXT.xml
+++ b/src/mapi/glapi/gen/es_EXT.xml
@@ -901,7 +901,7 @@
<function name="GetSamplerParameterIuivEXT" es2="3.0" alias="GetSamplerParameterIuiv">
<param name="sampler" type="GLuint"/>
<param name="pname" type="GLenum"/>
- <param name="params" type="GLfloat *"/>
+ <param name="params" type="GLuint *"/>
</function>
</category>
@@ -1290,7 +1290,7 @@
<function name="GetSamplerParameterIuivOES" es2="3.0" alias="GetSamplerParameterIuiv">
<param name="sampler" type="GLuint"/>
<param name="pname" type="GLenum"/>
- <param name="params" type="GLfloat *"/>
+ <param name="params" type="GLuint *"/>
</function>
</category>