diff options
author | Pierre-Eric Pelloux-Prayer <[email protected]> | 2019-11-06 14:04:55 +0100 |
---|---|---|
committer | Pierre-Eric Pelloux-Prayer <[email protected]> | 2019-11-19 08:49:45 +0100 |
commit | a0d667036d8c8b77fa62f74263583b07909f8637 (patch) | |
tree | 41ab8296b3e9d459ea85a36afc6ae12d1b572d35 /src/mapi | |
parent | b78e2a197a1dd866024b0dc97689a006c0e6798f (diff) |
mesa: add ARB_texture_buffer_range glTextureBufferRangeEXT function
Reviewed-by: Marek Olšák <[email protected]>
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/glapi/gen/ARB_texture_buffer_range.xml | 9 | ||||
-rw-r--r-- | src/mapi/glapi/gen/static_data.py | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/mapi/glapi/gen/ARB_texture_buffer_range.xml b/src/mapi/glapi/gen/ARB_texture_buffer_range.xml index 93ed5342323..ea4dbaea0be 100644 --- a/src/mapi/glapi/gen/ARB_texture_buffer_range.xml +++ b/src/mapi/glapi/gen/ARB_texture_buffer_range.xml @@ -17,6 +17,15 @@ <param name="size" type="GLsizeiptr"/> </function> + <function name="TextureBufferRangeEXT"> + <param name="texture" type="GLuint"/> + <param name="target" type="GLenum"/> + <param name="internalformat" type="GLenum"/> + <param name="buffer" type="GLuint"/> + <param name="offset" type="GLintptr"/> + <param name="size" type="GLsizeiptr"/> + </function> + </category> </OpenGLAPI> diff --git a/src/mapi/glapi/gen/static_data.py b/src/mapi/glapi/gen/static_data.py index 3326ffdf378..98690b14873 100644 --- a/src/mapi/glapi/gen/static_data.py +++ b/src/mapi/glapi/gen/static_data.py @@ -1622,6 +1622,7 @@ offsets = { "GetNamedFramebufferParameterivEXT": 1586, "VertexArrayVertexAttribLOffsetEXT": 1587, "VertexArrayVertexAttribDivisorEXT": 1588, + "TextureBufferRangeEXT": 1589, } functions = [ |