diff options
author | Brian Paul <[email protected]> | 2016-05-04 14:02:30 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2016-05-04 14:49:39 -0600 |
commit | be5010c4b8635d0292404ac58ed0436ba6637579 (patch) | |
tree | 7738f5c3c4644bce3dbf4b00f10e3ff005022a13 /src/mapi | |
parent | 54d203a319cbe33461b3c1872722cea10adc337a (diff) |
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" <[email protected]>
Reviewed-by: Charmaine Lee <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/glapi/gen/es_EXT.xml | 4 |
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 bf67eae40d4..ce4c4c49bed 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> |