diff options
author | Timothy Arceri <[email protected]> | 2018-08-16 11:21:38 +1000 |
---|---|---|
committer | Marek Olšák <[email protected]> | 2019-06-28 15:40:54 -0400 |
commit | 0972b0b059d78fb30d982939d0849542ecdf6f98 (patch) | |
tree | 485b9ed2f9b0e5e0fa5a513fe2e1c38f8fb4800d /src/mapi | |
parent | c37f03d46480e73d7c0cbfe93e91cd8d69d47220 (diff) |
mesa: add support for glBindMultiTextureEXT
Reviewed-by: Marek Olšák <[email protected]>
Signed-off-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/glapi/gen/EXT_direct_state_access.xml | 10 | ||||
-rw-r--r-- | src/mapi/glapi/gen/static_data.py | 1 |
2 files changed, 10 insertions, 1 deletions
diff --git a/src/mapi/glapi/gen/EXT_direct_state_access.xml b/src/mapi/glapi/gen/EXT_direct_state_access.xml index 76196740b9e..73d8d973a8c 100644 --- a/src/mapi/glapi/gen/EXT_direct_state_access.xml +++ b/src/mapi/glapi/gen/EXT_direct_state_access.xml @@ -100,6 +100,14 @@ <param name="matrixMode" type="GLenum" /> </function> + <!-- OpenGL 1.2.1 --> + + <function name="BindMultiTextureEXT"> + <param name="texunit" type="GLenum" /> + <param name="target" type="GLenum" /> + <param name="texture" type="GLuint" /> + </function> + <!-- OpenGL 1.3 --> <function name="MatrixLoadTransposefEXT" offset="assign"> @@ -122,5 +130,5 @@ <param name="m" type="const GLdouble *" /> </function> </category> - +</category> </OpenGLAPI> diff --git a/src/mapi/glapi/gen/static_data.py b/src/mapi/glapi/gen/static_data.py index 5351bc16de5..e189eb3ac4e 100644 --- a/src/mapi/glapi/gen/static_data.py +++ b/src/mapi/glapi/gen/static_data.py @@ -1473,6 +1473,7 @@ offsets = { "MatrixLoadTransposedEXT": 1437, "MatrixMultTransposefEXT": 1438, "MatrixMultTransposedEXT": 1439, + "BindMultiTextureEXT": 1440, } functions = [ |