mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-25 02:10:11 +01:00
mesa: Don't set dispatch pointer for glGetDoublev 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
aa129b0833
commit
850412b8ab
1 changed files with 3 additions and 1 deletions
|
|
@ -214,7 +214,9 @@ _mesa_create_exec_table(struct gl_context *ctx)
|
|||
SET_GetClipPlane(exec, _mesa_GetClipPlane);
|
||||
}
|
||||
SET_GetBooleanv(exec, _mesa_GetBooleanv);
|
||||
SET_GetDoublev(exec, _mesa_GetDoublev);
|
||||
if (ctx->API != API_OPENGLES2) {
|
||||
SET_GetDoublev(exec, _mesa_GetDoublev);
|
||||
}
|
||||
SET_GetIntegerv(exec, _mesa_GetIntegerv);
|
||||
if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) {
|
||||
SET_GetLightfv(exec, _mesa_GetLightfv);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue