mesa: don't set CallList* redundantly in _mesa_initialize_save_table

It's set by _mesa_install_save_vtxfmt.

Reviewed-by: Pierre-Eric Pelloux-Prayer <pierre-eric.pelloux-prayer@amd.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/14000>
This commit is contained in:
Marek Olšák
2021-11-28 17:24:59 -05:00
parent b8ad4fd59d
commit 12b1feb03e
2 changed files with 2 additions and 4 deletions
+2 -2
View File
@@ -1122,12 +1122,12 @@
<glx sop="102"/>
</function>
<function name="CallList" deprecated="3.1" marshal="custom">
<function name="CallList" deprecated="3.1" marshal="custom" exec="vtxfmt">
<param name="list" type="GLuint"/>
<glx rop="1"/>
</function>
<function name="CallLists" deprecated="3.1"
<function name="CallLists" deprecated="3.1" exec="vtxfmt"
marshal_call_after="_mesa_glthread_CallLists(ctx, n, type, lists);">
<param name="n" type="GLsizei" counter="true"/>
<param name="type" type="GLenum"/>
-2
View File
@@ -14013,8 +14013,6 @@ _mesa_initialize_save_table(const struct gl_context *ctx)
SET_AlphaFunc(table, save_AlphaFunc);
SET_Bitmap(table, save_Bitmap);
SET_BlendFunc(table, save_BlendFunc);
SET_CallList(table, save_CallList);
SET_CallLists(table, save_CallLists);
SET_Clear(table, save_Clear);
SET_ClearAccum(table, save_ClearAccum);
SET_ClearColor(table, save_ClearColor);