diff options
author | Pierre-Eric Pelloux-Prayer <[email protected]> | 2019-05-22 18:04:33 +0200 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2019-08-19 18:50:08 -0400 |
commit | 0f07d18e486c56afa88e512136cf47e44a57ef92 (patch) | |
tree | a31a5ac907667c0119fa33f368c198b969a92c9c /src/mapi | |
parent | e8c5dc9c24ae69e53fdde5831f1d9c3bdefb9c07 (diff) |
mesa: add ext_dsa GetMultiTexLevelParameterEXT
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/glapi/gen/EXT_direct_state_access.xml | 16 | ||||
-rw-r--r-- | src/mapi/glapi/gen/static_data.py | 2 |
2 files changed, 18 insertions, 0 deletions
diff --git a/src/mapi/glapi/gen/EXT_direct_state_access.xml b/src/mapi/glapi/gen/EXT_direct_state_access.xml index ae25bb61fdd..32fa4094981 100644 --- a/src/mapi/glapi/gen/EXT_direct_state_access.xml +++ b/src/mapi/glapi/gen/EXT_direct_state_access.xml @@ -434,6 +434,22 @@ <param name="pixels" type="GLvoid*" /> </function> + <function name="GetMultiTexLevelParameterivEXT"> + <param name="texunit" type="GLenum" /> + <param name="target" type="GLenum" /> + <param name="level" type="GLint" /> + <param name="pname" type="GLenum" /> + <param name="params" type="GLint*" /> + </function> + + <function name="GetMultiTexLevelParameterfvEXT"> + <param name="texunit" type="GLenum" /> + <param name="target" type="GLenum" /> + <param name="level" type="GLint" /> + <param name="pname" type="GLenum" /> + <param name="params" type="GLfloat*" /> + </function> + <function name="MultiTexImage1DEXT"> <param name="texunit" type="GLenum" /> <param name="target" type="GLenum" /> diff --git a/src/mapi/glapi/gen/static_data.py b/src/mapi/glapi/gen/static_data.py index 0c53ef1ac45..c1b3c6a5119 100644 --- a/src/mapi/glapi/gen/static_data.py +++ b/src/mapi/glapi/gen/static_data.py @@ -1565,6 +1565,8 @@ offsets = { "CompressedMultiTexSubImage2DEXT": 1529, "CompressedMultiTexSubImage3DEXT": 1530, "GetCompressedMultiTexImageEXT": 1531, + "GetMultiTexLevelParameterivEXT": 1532, + "GetMultiTexLevelParameterfvEXT": 1533, } functions = [ |