mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-01-04 22:10:11 +01:00
mesa: Don't set dispatch pointer for glTexStorage in ES2
NOTE: This is a candidate for the 9.0 branch Signed-off-by: Ian Romanick <ian.d.romanick@intel.com> Reviewed-by: Eric Anholt <eric@anholt.net>
This commit is contained in:
parent
7f7268d385
commit
ee77061277
1 changed files with 6 additions and 4 deletions
|
|
@ -874,10 +874,12 @@ _mesa_create_exec_table(struct gl_context *ctx)
|
|||
SET_TexStorage1D(exec, _mesa_TexStorage1D);
|
||||
SET_TextureStorage1DEXT(exec, _mesa_TextureStorage1DEXT);
|
||||
}
|
||||
SET_TexStorage2D(exec, _mesa_TexStorage2D);
|
||||
SET_TexStorage3D(exec, _mesa_TexStorage3D);
|
||||
SET_TextureStorage2DEXT(exec, _mesa_TextureStorage2DEXT);
|
||||
SET_TextureStorage3DEXT(exec, _mesa_TextureStorage3DEXT);
|
||||
if (_mesa_desktop_gl(ctx) || _mesa_is_gles3(ctx)) {
|
||||
SET_TexStorage2D(exec, _mesa_TexStorage2D);
|
||||
SET_TexStorage3D(exec, _mesa_TexStorage3D);
|
||||
SET_TextureStorage2DEXT(exec, _mesa_TextureStorage2DEXT);
|
||||
SET_TextureStorage3DEXT(exec, _mesa_TextureStorage3DEXT);
|
||||
}
|
||||
|
||||
if (ctx->API != API_OPENGLES2) {
|
||||
_mesa_init_sampler_object_dispatch(exec);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue