Move setting of _NEW_LIGHT to only occur when materials are present.
authorKeith Whitwell <keith@tungstengraphics.com>
Wed, 22 Nov 2006 09:34:55 +0000 (09:34 +0000)
committerKeith Whitwell <keith@tungstengraphics.com>
Wed, 22 Nov 2006 09:34:55 +0000 (09:34 +0000)
src/mesa/tnl/t_vtx_api.c

index b766ce2..77eec8b 100644 (file)
@@ -171,11 +171,10 @@ static void _tnl_copy_to_current( GLcontext *ctx )
 
    if (tnl->vtx.have_materials) {
       tnl->Driver.NotifyMaterialChange( ctx );
+      ctx->NewState |= _NEW_LIGHT;
    }
          
    ctx->Driver.NeedFlush &= ~FLUSH_UPDATE_CURRENT;
-
-   ctx->NewState |= _NEW_LIGHT;
 }