From: Ian Romanick Date: Sat, 18 Aug 2012 00:14:47 +0000 (-0700) Subject: mesa: Disallow more deprecated functions in core context X-Git-Tag: accepted/2.0alpha-wayland/20121114.171706~191 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=04d6ffa06deff792aea49eccc4bceb1a91a1892e;p=profile%2Fivi%2Fmesa.git mesa: Disallow more deprecated functions in core context Signed-off-by: Ian Romanick --- diff --git a/src/mesa/main/api_exec.c b/src/mesa/main/api_exec.c index af73074..167a942 100644 --- a/src/mesa/main/api_exec.c +++ b/src/mesa/main/api_exec.c @@ -582,7 +582,7 @@ _mesa_create_exec_table(struct gl_context *ctx) /* ARB 1. GL_ARB_multitexture */ #if _HAVE_FULL_GL SET_ActiveTextureARB(exec, _mesa_ActiveTextureARB); - if (ctx->API != API_OPENGLES2) { + if (ctx->API != API_OPENGL_CORE && ctx->API != API_OPENGLES2) { SET_ClientActiveTextureARB(exec, _mesa_ClientActiveTextureARB); } #endif diff --git a/src/mesa/main/vtxfmt.c b/src/mesa/main/vtxfmt.c index d8cd2dd..2b6e25e 100644 --- a/src/mesa/main/vtxfmt.c +++ b/src/mesa/main/vtxfmt.c @@ -48,9 +48,8 @@ static void install_vtxfmt(struct gl_context *ctx, struct _glapi_table *tab, const GLvertexformat *vfmt) { - _mesa_install_arrayelt_vtxfmt(tab, vfmt); - if (ctx->API != API_OPENGL_CORE) { + _mesa_install_arrayelt_vtxfmt(tab, vfmt); SET_Color3f(tab, vfmt->Color3f); SET_Color3fv(tab, vfmt->Color3fv); SET_Color4f(tab, vfmt->Color4f);