summaryrefslogtreecommitdiffstats
path: root/src/mesa/main/vtxfmt.c
diff options
context:
space:
mode:
authorIan Romanick <ian.d.romanick@intel.com>2012-07-28 15:20:48 -0700
committerIan Romanick <ian.d.romanick@intel.com>2012-08-29 15:09:36 -0700
commita010215463c63680c69e90202fe3fcd2e5b25fa6 (patch)
tree202346e7f12fd759cce2f72d5f96371d4c2768e5 /src/mesa/main/vtxfmt.c
parentfc2219e4482c4b940ea32dbe8ad220a22c300f3d (diff)
downloadexternal_mesa3d-a010215463c63680c69e90202fe3fcd2e5b25fa6.zip
external_mesa3d-a010215463c63680c69e90202fe3fcd2e5b25fa6.tar.gz
external_mesa3d-a010215463c63680c69e90202fe3fcd2e5b25fa6.tar.bz2
mesa: Kill ES2 wrapper functions
v2: Fix completely broken condition around ClearColorIiEXT and ClearColorIuiEXT. v3: Add special VertexAttrib handling for ES2. Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
Diffstat (limited to 'src/mesa/main/vtxfmt.c')
-rw-r--r--src/mesa/main/vtxfmt.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/main/vtxfmt.c b/src/mesa/main/vtxfmt.c
index ce490ed..c73cfbb 100644
--- a/src/mesa/main/vtxfmt.c
+++ b/src/mesa/main/vtxfmt.c
@@ -218,8 +218,7 @@ install_vtxfmt(struct gl_context *ctx, struct _glapi_table *tab,
void
_mesa_install_exec_vtxfmt(struct gl_context *ctx, const GLvertexformat *vfmt)
{
- if (_mesa_is_desktop_gl(ctx))
- install_vtxfmt( ctx, ctx->Exec, vfmt );
+ install_vtxfmt( ctx, ctx->Exec, vfmt );
}