summaryrefslogtreecommitdiff
path: root/src/mesa/main/dlist.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2009-12-31 08:48:27 -0700
committerBrian Paul <brianp@vmware.com>2009-12-31 08:49:28 -0700
commitf10470e3fe0fc70531c91d1c86c99dd1ba826bfb (patch)
tree34830b8d626dd365af6e767f07d38f5c41dbe8b2 /src/mesa/main/dlist.c
parent34075d0219edc2cedb5122eb0f82ee0b105b3abd (diff)
mesa: enable ColorMaskIndexed in display lists
Diffstat (limited to 'src/mesa/main/dlist.c')
-rw-r--r--src/mesa/main/dlist.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/mesa/main/dlist.c b/src/mesa/main/dlist.c
index 1f19716bc3..1f9af364f9 100644
--- a/src/mesa/main/dlist.c
+++ b/src/mesa/main/dlist.c
@@ -6825,10 +6825,8 @@ execute_list(GLcontext *ctx, GLuint list)
CALL_ColorMask(ctx->Exec, (n[1].b, n[2].b, n[3].b, n[4].b));
break;
case OPCODE_COLOR_MASK_INDEXED:
- /*
CALL_ColorMaskIndexedEXT(ctx->Exec, (n[1].ui, n[2].b, n[3].b,
n[4].b, n[5].b));
- */
break;
case OPCODE_COLOR_MATERIAL:
CALL_ColorMaterial(ctx->Exec, (n[1].e, n[2].e));
@@ -8752,7 +8750,7 @@ _mesa_init_save_table(struct _glapi_table *table)
SET_ClearStencil(table, save_ClearStencil);
SET_ClipPlane(table, save_ClipPlane);
SET_ColorMask(table, save_ColorMask);
- /*SET_ColorMaskIndexedEXT(table, save_ColorMaskIndexed);*/
+ SET_ColorMaskIndexedEXT(table, save_ColorMaskIndexed);
(void) save_ColorMaskIndexed;
SET_ColorMaterial(table, save_ColorMaterial);
SET_CopyPixels(table, save_CopyPixels);