summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/softpipe/sp_state_blend.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mesa/pipe/softpipe/sp_state_blend.c')
-rw-r--r--src/mesa/pipe/softpipe/sp_state_blend.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/pipe/softpipe/sp_state_blend.c b/src/mesa/pipe/softpipe/sp_state_blend.c
index e0ff549d702..ae8950e386e 100644
--- a/src/mesa/pipe/softpipe/sp_state_blend.c
+++ b/src/mesa/pipe/softpipe/sp_state_blend.c
@@ -40,7 +40,7 @@ void softpipe_set_blend_state( struct pipe_context *pipe,
softpipe->blend = *blend;
- softpipe->dirty |= G_NEW_BLEND;
+ softpipe->dirty |= SP_NEW_BLEND;
}
@@ -51,7 +51,7 @@ void softpipe_set_blend_color( struct pipe_context *pipe,
softpipe->blend_color = *blend_color;
- softpipe->dirty |= G_NEW_BLEND;
+ softpipe->dirty |= SP_NEW_BLEND;
}
@@ -66,7 +66,7 @@ softpipe_set_depth_test_state(struct pipe_context *pipe,
softpipe->depth_test = *depth;
- softpipe->dirty |= G_NEW_DEPTH_TEST;
+ softpipe->dirty |= SP_NEW_DEPTH_TEST;
}
void
@@ -77,6 +77,6 @@ softpipe_set_alpha_test_state(struct pipe_context *pipe,
softpipe->alpha_test = *alpha;
- softpipe->dirty |= G_NEW_ALPHA_TEST;
+ softpipe->dirty |= SP_NEW_ALPHA_TEST;
}