i965: Add _NEW_LIGHT to Gen6 clip state dirty bits.
authorKenneth Graunke <kenneth@whitecape.org>
Tue, 17 May 2011 05:00:17 +0000 (22:00 -0700)
committerKenneth Graunke <kenneth@whitecape.org>
Wed, 18 May 2011 06:30:46 +0000 (23:30 -0700)
ctx->Light.ProvokingVertex depends on _NEW_LIGHT.

Found by inspection.

Signed-off-by: Kenneth Graunke <kenneth@whitecape.org>
Reviewed-by: Eric Anholt <eric@anholt.net>
src/mesa/drivers/dri/i965/gen6_clip_state.c

index d6c1f1c893d1b54a7b058b0a45a7cecc4025bcf3..872465dacc2ccfcaca9e8cd216d8e703a0602ddd 100644 (file)
@@ -42,6 +42,7 @@ upload_clip_state(struct brw_context *brw)
    if (!ctx->Transform.DepthClamp)
       depth_clamp = GEN6_CLIP_Z_TEST;
 
+   /* _NEW_LIGHT */
    if (ctx->Light.ProvokingVertex == GL_FIRST_VERTEX_CONVENTION) {
       provoking =
         (0 << GEN6_CLIP_TRI_PROVOKE_SHIFT) |
@@ -75,7 +76,7 @@ upload_clip_state(struct brw_context *brw)
 
 const struct brw_tracked_state gen6_clip_state = {
    .dirty = {
-      .mesa  = _NEW_TRANSFORM,
+      .mesa  = _NEW_TRANSFORM | _NEW_LIGHT,
       .brw   = BRW_NEW_CONTEXT,
       .cache = 0
    },