mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 04:58:05 +02:00
mesa: Fix GetVertexAttrib* inside display lists.
GetVertexAttrib*{,ARB} is no longer aliased to the NV calls.
This fixes tracing yofrankie with apitrace, given it requires accurate
results from GetVertexAttribiv*.
NOTE: This is a candidate for the stable branches.
This commit is contained in:
parent
ea95bf7d89
commit
203624128c
1 changed files with 3 additions and 3 deletions
|
|
@ -9413,9 +9413,9 @@ _mesa_create_save_table(void)
|
|||
SET_DeleteProgramsNV(table, _mesa_DeletePrograms);
|
||||
SET_GenProgramsNV(table, _mesa_GenPrograms);
|
||||
SET_IsProgramNV(table, _mesa_IsProgramARB);
|
||||
SET_GetVertexAttribdvNV(table, _mesa_GetVertexAttribdvNV);
|
||||
SET_GetVertexAttribfvNV(table, _mesa_GetVertexAttribfvNV);
|
||||
SET_GetVertexAttribivNV(table, _mesa_GetVertexAttribivNV);
|
||||
SET_GetVertexAttribdvARB(table, _mesa_GetVertexAttribdvARB);
|
||||
SET_GetVertexAttribfvARB(table, _mesa_GetVertexAttribfvARB);
|
||||
SET_GetVertexAttribivARB(table, _mesa_GetVertexAttribivARB);
|
||||
SET_GetVertexAttribPointervNV(table, _mesa_GetVertexAttribPointervNV);
|
||||
SET_ProgramEnvParameter4dARB(table, save_ProgramEnvParameter4dARB);
|
||||
SET_ProgramEnvParameter4dvARB(table, save_ProgramEnvParameter4dvARB);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue