summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/softpipe/sp_state_sampler.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_sampler.c
parent546eff6ba81e0fc8f15038de6db2a2a5fe228e01 (diff)
Rename G_NEW_* tokens to SP_NEW_*
Diffstat (limited to 'src/mesa/pipe/softpipe/sp_state_sampler.c')
-rw-r--r--src/mesa/pipe/softpipe/sp_state_sampler.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/pipe/softpipe/sp_state_sampler.c b/src/mesa/pipe/softpipe/sp_state_sampler.c
index 62ff5c50b8..9ef71f73cb 100644
--- a/src/mesa/pipe/softpipe/sp_state_sampler.c
+++ b/src/mesa/pipe/softpipe/sp_state_sampler.c
@@ -46,7 +46,7 @@ softpipe_set_sampler_state(struct pipe_context *pipe,
assert(unit < PIPE_MAX_SAMPLERS);
softpipe->sampler[unit] = *sampler;
- softpipe->dirty |= G_NEW_SAMPLER;
+ softpipe->dirty |= SP_NEW_SAMPLER;
}
@@ -60,5 +60,5 @@ softpipe_set_texture_state(struct pipe_context *pipe,
assert(unit < PIPE_MAX_SAMPLERS);
softpipe->texture[unit] = texture; /* ptr, not struct */
- softpipe->dirty |= G_NEW_TEXTURE;
+ softpipe->dirty |= SP_NEW_TEXTURE;
}