diff options
Diffstat (limited to 'src/mapi')
-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. |