summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/softpipe/sp_state_derived.c
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-07-09 16:17:50 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-07-09 16:17:50 -0600
commita380f98b6cc1da78d0845746ab86c3490a800126 (patch)
treeacf726946aef0e91adb292661db129f947de69e9 /src/mesa/pipe/softpipe/sp_state_derived.c
parent546eff6ba81e0fc8f15038de6db2a2a5fe228e01 (diff)
Rename G_NEW_* tokens to SP_NEW_*
Diffstat (limited to 'src/mesa/pipe/softpipe/sp_state_derived.c')
-rw-r--r--src/mesa/pipe/softpipe/sp_state_derived.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/pipe/softpipe/sp_state_derived.c b/src/mesa/pipe/softpipe/sp_state_derived.c
index 4454dd9ba9..dd8a490f3b 100644
--- a/src/mesa/pipe/softpipe/sp_state_derived.c
+++ b/src/mesa/pipe/softpipe/sp_state_derived.c
@@ -131,10 +131,10 @@ static void calculate_vertex_layout( struct softpipe_context *softpipe )
*/
void softpipe_update_derived( struct softpipe_context *softpipe )
{
- if (softpipe->dirty & (G_NEW_SETUP | G_NEW_FS))
+ if (softpipe->dirty & (SP_NEW_SETUP | SP_NEW_FS))
calculate_vertex_layout( softpipe );
- if (softpipe->dirty & (G_NEW_BLEND | G_NEW_DEPTH_TEST | G_NEW_ALPHA_TEST | G_NEW_FS))
+ if (softpipe->dirty & (SP_NEW_BLEND | SP_NEW_DEPTH_TEST | SP_NEW_ALPHA_TEST | SP_NEW_FS))
sp_build_quad_pipeline(softpipe);
softpipe->dirty = 0;