mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-05 05:18:08 +02:00
mesa: Don't set dispatch pointer for glGetProgramivARB in ES2
This function is not the same as glGetProgramiv. 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
a83b01371e
commit
7f7268d385
1 changed files with 1 additions and 1 deletions
|
|
@ -674,11 +674,11 @@ _mesa_create_exec_table(struct gl_context *ctx)
|
|||
SET_ProgramLocalParameter4fvARB(exec, _mesa_ProgramLocalParameter4fvARB);
|
||||
SET_GetProgramEnvParameterdvARB(exec, _mesa_GetProgramEnvParameterdvARB);
|
||||
SET_GetProgramEnvParameterfvARB(exec, _mesa_GetProgramEnvParameterfvARB);
|
||||
SET_GetProgramivARB(exec, _mesa_GetProgramivARB);
|
||||
SET_GetProgramLocalParameterdvARB(exec, _mesa_GetProgramLocalParameterdvARB);
|
||||
SET_GetProgramLocalParameterfvARB(exec, _mesa_GetProgramLocalParameterfvARB);
|
||||
SET_GetProgramStringARB(exec, _mesa_GetProgramStringARB);
|
||||
}
|
||||
SET_GetProgramivARB(exec, _mesa_GetProgramivARB);
|
||||
|
||||
/* ARB 28. GL_ARB_vertex_buffer_object */
|
||||
_mesa_init_bufferobj_dispatch(ctx, exec);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue