summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/softpipe/sp_state_clip.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_clip.c
parent546eff6ba81e0fc8f15038de6db2a2a5fe228e01 (diff)
Rename G_NEW_* tokens to SP_NEW_*
Diffstat (limited to 'src/mesa/pipe/softpipe/sp_state_clip.c')
-rw-r--r--src/mesa/pipe/softpipe/sp_state_clip.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/pipe/softpipe/sp_state_clip.c b/src/mesa/pipe/softpipe/sp_state_clip.c
index 3b69d3e7a7..8cf4383d3f 100644
--- a/src/mesa/pipe/softpipe/sp_state_clip.c
+++ b/src/mesa/pipe/softpipe/sp_state_clip.c
@@ -54,7 +54,7 @@ void softpipe_set_viewport_state( struct pipe_context *pipe,
struct softpipe_context *softpipe = softpipe_context(pipe);
softpipe->viewport = *viewport; /* struct copy */
- softpipe->dirty |= G_NEW_VIEWPORT;
+ softpipe->dirty |= SP_NEW_VIEWPORT;
/* pass the viewport info to the draw module */
draw_set_viewport_state(softpipe->draw, viewport);
@@ -71,7 +71,7 @@ void softpipe_set_scissor_state( struct pipe_context *pipe,
struct softpipe_context *softpipe = softpipe_context(pipe);
memcpy( &softpipe->scissor, scissor, sizeof(*scissor) );
- softpipe->dirty |= G_NEW_SCISSOR;
+ softpipe->dirty |= SP_NEW_SCISSOR;
}
@@ -81,5 +81,5 @@ void softpipe_set_polygon_stipple( struct pipe_context *pipe,
struct softpipe_context *softpipe = softpipe_context(pipe);
memcpy( &softpipe->poly_stipple, stipple, sizeof(*stipple) );
- softpipe->dirty |= G_NEW_STIPPLE;
+ softpipe->dirty |= SP_NEW_STIPPLE;
}