diff options
author | Ryan Houdek <[email protected]> | 2015-11-02 19:30:18 -0600 |
---|---|---|
committer | Ilia Mirkin <[email protected]> | 2015-11-04 00:01:03 -0500 |
commit | 13b19aa815661cd17b74c8694b6c466bfaf75740 (patch) | |
tree | 7d1dd7f9eab70185228b9070aa9ca77c9cc84133 /src/mapi | |
parent | 8e4cf900f0af9eb8a72c81a0e5e393906b11764a (diff) |
mesa: expose support for GL_EXT_buffer_storage
This extension requires ES 3.1 since it relies on glMemoryBarrier.
For testing purposes I temporarily moved glMemoryBarrier to be an ES 3.0
function.
This has been tested with the piglit in the ML and the Dolphin emulator.
Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/mapi')
-rw-r--r-- | src/mapi/glapi/gen/es_EXT.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mapi/glapi/gen/es_EXT.xml b/src/mapi/glapi/gen/es_EXT.xml index bf20e4801cc..9a777a24c61 100644 --- a/src/mapi/glapi/gen/es_EXT.xml +++ b/src/mapi/glapi/gen/es_EXT.xml @@ -905,4 +905,13 @@ </category> +<category name="GL_EXT_buffer_storage" number="239"> + <function name="BufferStorageEXT" alias="BufferStorage" es2="3.1"> + <param name="target" type="GLenum"/> + <param name="size" type="GLsizeiptr"/> + <param name="data" type="const GLvoid *"/> + <param name="flags" type="GLbitfield"/> + </function> +</category> + </OpenGLAPI> |