mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 00:58:05 +02:00
dispatch: Update check_table.cpp to reflect recent aliasing changes.
In commitsbad96f6ande7dd2e5I added the following aliases: - ClampColor -> ClampColorARB - VertexAttribDivisor -> VertexAttribDivisorARB But I neglected to update check_table.cpp, causing "make check" to fail for non-shared-glapi builds. This patch removes the functions that are now aliased from check_table.cpp, so that "make check" works correctly again. Reviewed-by: Kenneth Graunke <kenneth@whitecape.org> Reviewed-by: Matt Turner <mattst88@gmail.com> Reviewed-by: Chad Versace <chad.versace@linux.intel.com>
This commit is contained in:
parent
56f8ed4c35
commit
47deaf6175
1 changed files with 0 additions and 2 deletions
|
|
@ -993,7 +993,6 @@ const struct name_offset known_dispatch[] = {
|
|||
{ "glUniformMatrix3x4fv", _O(UniformMatrix3x4fv) },
|
||||
{ "glUniformMatrix4x2fv", _O(UniformMatrix4x2fv) },
|
||||
{ "glUniformMatrix4x3fv", _O(UniformMatrix4x3fv) },
|
||||
{ "glClampColor", _O(ClampColor) },
|
||||
{ "glClearBufferfi", _O(ClearBufferfi) },
|
||||
{ "glClearBufferfv", _O(ClearBufferfv) },
|
||||
{ "glClearBufferiv", _O(ClearBufferiv) },
|
||||
|
|
@ -1002,7 +1001,6 @@ const struct name_offset known_dispatch[] = {
|
|||
{ "glFramebufferTexture", _O(FramebufferTexture) },
|
||||
{ "glGetBufferParameteri64v", _O(GetBufferParameteri64v) },
|
||||
{ "glGetInteger64i_v", _O(GetInteger64i_v) },
|
||||
{ "glVertexAttribDivisor", _O(VertexAttribDivisor) },
|
||||
{ "glLoadTransposeMatrixdARB", _O(LoadTransposeMatrixdARB) },
|
||||
{ "glLoadTransposeMatrixfARB", _O(LoadTransposeMatrixfARB) },
|
||||
{ "glMultTransposeMatrixdARB", _O(MultTransposeMatrixdARB) },
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue