summaryrefslogtreecommitdiff
path: root/src/mapi/glapi/gen/gl_API.xml
diff options
context:
space:
mode:
authorMarek Olšák <marek.olsak@amd.com>2020-12-23 12:30:13 -0500
committerMarge Bot <eric+marge@anholt.net>2021-01-21 00:12:35 +0000
commitfd678bef40b74f9209b2529797df26a4a31d6f7e (patch)
treeb0ddae1819e907496393204ab98062e13db67fc9 /src/mapi/glapi/gen/gl_API.xml
parentdf38b99e85590d846c2191f5990592b568202b55 (diff)
glthread: remove if (COMPAT) conditions from functions that are GL-compat-only
Acked-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8297>
Diffstat (limited to 'src/mapi/glapi/gen/gl_API.xml')
-rw-r--r--src/mapi/glapi/gen/gl_API.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mapi/glapi/gen/gl_API.xml b/src/mapi/glapi/gen/gl_API.xml
index d04f4c4f1d6..704028a3e73 100644
--- a/src/mapi/glapi/gen/gl_API.xml
+++ b/src/mapi/glapi/gen/gl_API.xml
@@ -1111,14 +1111,14 @@
<type name="DEBUGPROC" size="4" pointer="true"/>
<function name="NewList" deprecated="3.1"
- marshal_call_after="if (COMPAT) ctx->GLThread.ListMode = mode;">
+ marshal_call_after="ctx->GLThread.ListMode = mode;">
<param name="list" type="GLuint"/>
<param name="mode" type="GLenum"/>
<glx sop="101"/>
</function>
<function name="EndList" deprecated="3.1"
- marshal_call_after="if (COMPAT) ctx->GLThread.ListMode = 0;">
+ marshal_call_after="ctx->GLThread.ListMode = 0;">
<glx sop="102"/>
</function>
@@ -3402,12 +3402,12 @@
</function>
<function name="PopClientAttrib" deprecated="3.1"
- marshal_call_after="if (COMPAT) _mesa_glthread_PopClientAttrib(ctx);">
+ marshal_call_after="_mesa_glthread_PopClientAttrib(ctx);">
<glx handcode="true"/>
</function>
<function name="PushClientAttrib" deprecated="3.1"
- marshal_call_after="if (COMPAT) _mesa_glthread_PushClientAttrib(ctx, mask, false);">
+ marshal_call_after="_mesa_glthread_PushClientAttrib(ctx, mask, false);">
<param name="mask" type="GLbitfield"/>
<glx handcode="true"/>
</function>