mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-25 08:00:25 +01:00
mesa: display list dispatch for GL_ARB_texture_storage
This commit is contained in:
parent
a0d736b3b7
commit
7d577d703d
1 changed files with 9 additions and 0 deletions
|
|
@ -61,6 +61,7 @@
|
|||
#include "shaderapi.h"
|
||||
#include "syncobj.h"
|
||||
#include "teximage.h"
|
||||
#include "texstorage.h"
|
||||
#include "mtypes.h"
|
||||
#include "varray.h"
|
||||
#if FEATURE_ARB_vertex_program || FEATURE_ARB_fragment_program
|
||||
|
|
@ -10364,6 +10365,14 @@ _mesa_create_save_table(void)
|
|||
_mesa_init_sync_dispatch(table);
|
||||
SET_WaitSync(table, save_WaitSync);
|
||||
|
||||
/* GL_ARB_texture_storage (no dlist support) */
|
||||
SET_TexStorage1D(table, _mesa_TexStorage1D);
|
||||
SET_TexStorage2D(table, _mesa_TexStorage2D);
|
||||
SET_TexStorage3D(table, _mesa_TexStorage3D);
|
||||
SET_TextureStorage1DEXT(table, _mesa_TextureStorage1DEXT);
|
||||
SET_TextureStorage2DEXT(table, _mesa_TextureStorage2DEXT);
|
||||
SET_TextureStorage3DEXT(table, _mesa_TextureStorage3DEXT);
|
||||
|
||||
return table;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue