diff options
author | Laura Ekstrand <[email protected]> | 2014-12-10 16:57:50 -0800 |
---|---|---|
committer | Laura Ekstrand <[email protected]> | 2015-01-08 11:37:29 -0800 |
commit | d954f6023b80d9dd87f697c831f21ecdb831d13b (patch) | |
tree | 480716fd58a8d7e2d4e49f9bbce803b422f49504 /src/mapi | |
parent | 354d789f3b6212402b880ba8ef9ba9a57afea038 (diff) |
main: Added entry points for glTextureParameteriv, Iiv, Iuiv.
Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/glapi/gen/ARB_direct_state_access.xml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/mapi/glapi/gen/ARB_direct_state_access.xml b/src/mapi/glapi/gen/ARB_direct_state_access.xml index 68c6ebe3882..9658fd18e67 100644 --- a/src/mapi/glapi/gen/ARB_direct_state_access.xml +++ b/src/mapi/glapi/gen/ARB_direct_state_access.xml @@ -93,6 +93,24 @@ <param name="param" type="GLint" /> </function> + <function name="TextureParameterIiv" offset="assign"> + <param name="texture" type="GLuint" /> + <param name="pname" type="GLenum" /> + <param name="params" type="const GLint *" /> + </function> + + <function name="TextureParameterIuiv" offset="assign"> + <param name="texture" type="GLuint" /> + <param name="pname" type="GLenum" /> + <param name="params" type="const GLuint *" /> + </function> + + <function name="TextureParameteriv" offset="assign"> + <param name="texture" type="GLuint" /> + <param name="pname" type="GLenum" /> + <param name="param" type="const GLint *" /> + </function> + <function name="BindTextureUnit" offset="assign"> <param name="unit" type="GLuint" /> <param name="texture" type="GLuint" /> |