diff options
author | Laura Ekstrand <[email protected]> | 2014-12-10 15:19:59 -0800 |
---|---|---|
committer | Laura Ekstrand <[email protected]> | 2015-01-08 11:37:29 -0800 |
commit | 86bb3be3193512c12c284bb2cc609fa78d27fc55 (patch) | |
tree | ab1f188fbf1cc6b7c786c371a5477bff9543f96a /src/mapi | |
parent | bf5c588cdea616e0fb57f904c38bc0eb5eb2b962 (diff) |
main: Added entry points for glGetTextureLevelParameteriv, fv.
Reviewed-by: Anuj Phogat <[email protected]>
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/glapi/gen/ARB_direct_state_access.xml | 14 |
1 files changed, 14 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 9658fd18e67..c4213eb4439 100644 --- a/src/mapi/glapi/gen/ARB_direct_state_access.xml +++ b/src/mapi/glapi/gen/ARB_direct_state_access.xml @@ -116,5 +116,19 @@ <param name="texture" type="GLuint" /> </function> + <function name="GetTextureLevelParameterfv" offset="assign"> + <param name="texture" type="GLuint" /> + <param name="level" type="GLint" /> + <param name="pname" type="GLenum" /> + <param name="params" type="GLfloat *" /> + </function> + + <function name="GetTextureLevelParameteriv" offset="assign"> + <param name="texture" type="GLuint" /> + <param name="level" type="GLint" /> + <param name="pname" type="GLenum" /> + <param name="params" type="GLint *" /> + </function> + </category> </OpenGLAPI> |