diff options
author | Marta Lofstedt <[email protected]> | 2015-09-01 08:19:11 +0300 |
---|---|---|
committer | Tapani Pälli <[email protected]> | 2015-09-01 08:19:11 +0300 |
commit | d770e2746c0b63e47dfd4ab1733ab304dd7222da (patch) | |
tree | 998f0e5db50120b465d1bf9b9aaed5680e7e5490 /src/mapi/glapi | |
parent | e16531fbe3a79bc27cf00701616a260b452597ef (diff) |
mesa: Expose GL_ARB_framebuffer_no_attachments to GLES 3.1
V2: Conform to new standard for exposing enums for OpenGL ES 3.1.
Signed-off-by: Marta Lofstedt <[email protected]>
Reviewed-by: Ilia Mirkin <[email protected]>
Diffstat (limited to 'src/mapi/glapi')
-rw-r--r-- | src/mapi/glapi/gen/ARB_framebuffer_no_attachments.xml | 4 | ||||
-rw-r--r-- | src/mapi/glapi/gen/apiexec.py | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/mapi/glapi/gen/ARB_framebuffer_no_attachments.xml b/src/mapi/glapi/gen/ARB_framebuffer_no_attachments.xml index 59839a044be..55ad7642ff5 100644 --- a/src/mapi/glapi/gen/ARB_framebuffer_no_attachments.xml +++ b/src/mapi/glapi/gen/ARB_framebuffer_no_attachments.xml @@ -15,13 +15,13 @@ <enum name="MAX_FRAMEBUFFER_LAYERS" value="0x9317" /> <enum name="MAX_FRAMEBUFFER_SAMPLES" value="0x9318" /> - <function name="FramebufferParameteri"> + <function name="FramebufferParameteri" es2="3.1"> <param name="target" type="GLenum"/> <param name="pname" type="GLenum"/> <param name="param" type="GLint" /> </function> - <function name="GetFramebufferParameteriv"> + <function name="GetFramebufferParameteriv" es2="3.1"> <param name="target" type="GLenum" /> <param name="pname" type="GLenum" /> <param name="params" type="GLint *" output="true" /> diff --git a/src/mapi/glapi/gen/apiexec.py b/src/mapi/glapi/gen/apiexec.py index 3a0eb1869a8..58ec08be466 100644 --- a/src/mapi/glapi/gen/apiexec.py +++ b/src/mapi/glapi/gen/apiexec.py @@ -151,8 +151,8 @@ functions = { # OpenGL 4.3 / GL_ARB_framebuffer_no_attachments. Mesa can expose the # extension with OpenGL 3.0. - "FramebufferParameteri": exec_info(compatibility=30, core=31), - "GetFramebufferParameteri": exec_info(compatibility=30, core=31), + "FramebufferParameteri": exec_info(compatibility=30, core=31, es2=31), + "GetFramebufferParameteri": exec_info(compatibility=30, core=31, es2=31), # OpenGL 4.5 / GL_ARB_direct_state_access. Mesa can expose the extension # with core profile. |