diff options
author | Pierre-Eric Pelloux-Prayer <[email protected]> | 2019-09-09 16:22:29 +0200 |
---|---|---|
committer | Pierre-Eric Pelloux-Prayer <[email protected]> | 2019-10-18 10:26:26 +0200 |
commit | 2bdf809e66d16ff571eafa90f7607793ba65266b (patch) | |
tree | 5510064917a83016a9fd723429d25d126e848bd5 /src/mapi | |
parent | 28cc07a876d35d8d52120af6859fc7bbe270a9f2 (diff) |
mesa: add EXT_dsa + EXT_texture_buffer_object functions
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/glapi/gen/EXT_direct_state_access.xml | 14 | ||||
-rw-r--r-- | src/mapi/glapi/gen/static_data.py | 2 |
2 files changed, 16 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 c35eacadeed..6a26a43dba2 100644 --- a/src/mapi/glapi/gen/EXT_direct_state_access.xml +++ b/src/mapi/glapi/gen/EXT_direct_state_access.xml @@ -1085,5 +1085,19 @@ <param name="params" type="GLint*" /> </function> + <!-- EXT_texture_buffer_object --> + <function name="TextureBufferEXT"> + <param name="texture" type="GLuint" /> + <param name="target" type="GLenum" /> + <param name="internalformat" type="GLenum" /> + <param name="buffer" type="GLuint" /> + </function> + + <function name="MultiTexBufferEXT"> + <param name="texunit" type="GLenum" /> + <param name="target" type="GLenum" /> + <param name="internalformat" type="GLenum" /> + <param name="buffer" type="GLuint" /> + </function> </category> </OpenGLAPI> diff --git a/src/mapi/glapi/gen/static_data.py b/src/mapi/glapi/gen/static_data.py index 2116a1b38a5..ae041817bb3 100644 --- a/src/mapi/glapi/gen/static_data.py +++ b/src/mapi/glapi/gen/static_data.py @@ -1582,6 +1582,8 @@ offsets = { "NamedProgramLocalParameter4dvEXT": 1546, "GetNamedProgramLocalParameterdvEXT": 1547, "GetNamedProgramivEXT": 1548, + "TextureBufferEXT": 1549, + "MultiTexBufferEXT": 1550, } functions = [ |