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/mesa/main/extensions.c | |
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/mesa/main/extensions.c')
-rw-r--r-- | src/mesa/main/extensions.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/mesa/main/extensions.c b/src/mesa/main/extensions.c index d964f030ecb..bdc68175bf2 100644 --- a/src/mesa/main/extensions.c +++ b/src/mesa/main/extensions.c @@ -222,6 +222,7 @@ static const struct extension extension_table[] = { { "GL_EXT_blend_color", o(EXT_blend_color), GLL, 1995 }, { "GL_EXT_blend_equation_separate", o(EXT_blend_equation_separate), GL, 2003 }, { "GL_EXT_blend_func_separate", o(EXT_blend_func_separate), GLL, 1999 }, + { "GL_EXT_buffer_storage", o(ARB_buffer_storage), ES31, 2015 }, { "GL_EXT_discard_framebuffer", o(dummy_true), ES1 | ES2, 2009 }, { "GL_EXT_blend_minmax", o(EXT_blend_minmax), GLL | ES1 | ES2, 1995 }, { "GL_EXT_blend_subtract", o(dummy_true), GLL, 1995 }, |