mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-04 12:50:25 +01:00
mesa: Fix display list handling for GL_EXT_framebuffer_multisample.
From the extension spec:
Added to section 5.4, as part of the discussion of which commands
are not compiled into display lists:
"Certain commands, when called while compiling a display list, are
not compiled into the display list but are executed immediately.
These are: ..., RenderbufferStorageMultisampleEXT..."
Fixes piglit EXT_framebuffer_multisample/dlist.
Reviewed-by: Brian Paul <brianp@vmware.com>
(cherry picked from commit 3d8c27f882)
This commit is contained in:
parent
1a77654e6a
commit
67937502f5
1 changed files with 3 additions and 0 deletions
|
|
@ -10130,6 +10130,9 @@ _mesa_create_save_table(void)
|
|||
SET_FramebufferRenderbufferEXT(table, _mesa_FramebufferRenderbufferEXT);
|
||||
SET_GenerateMipmapEXT(table, _mesa_GenerateMipmapEXT);
|
||||
|
||||
/* 317. GL_EXT_framebuffer_multisample */
|
||||
SET_RenderbufferStorageMultisample(table, _mesa_RenderbufferStorageMultisample);
|
||||
|
||||
/* GL_ARB_vertex_array_object */
|
||||
SET_BindVertexArray(table, _mesa_BindVertexArray);
|
||||
SET_GenVertexArrays(table, _mesa_GenVertexArrays);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue