summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_state_blend.c
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-07-27 11:36:24 +0100
committerJosé Fonseca <jfonseca@vmware.com>2009-08-29 09:21:16 +0100
commitc9a5930fe45a0a0299769bd2b672ca516d1bf39e (patch)
treefc6ef11953101215179be32296dac374f43a7e4d /src/gallium/drivers/llvmpipe/lp_state_blend.c
parent8783732c4d2b9162d996f678eb41e3eae3ac86c7 (diff)
llvmpipe: Rename preprocessor symbols too.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_state_blend.c')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_state_blend.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_state_blend.c b/src/gallium/drivers/llvmpipe/lp_state_blend.c
index 420615bd5b..041a54f13e 100644
--- a/src/gallium/drivers/llvmpipe/lp_state_blend.c
+++ b/src/gallium/drivers/llvmpipe/lp_state_blend.c
@@ -47,7 +47,7 @@ void llvmpipe_bind_blend_state( struct pipe_context *pipe,
llvmpipe->blend = (const struct pipe_blend_state *)blend;
- llvmpipe->dirty |= SP_NEW_BLEND;
+ llvmpipe->dirty |= LP_NEW_BLEND;
}
void llvmpipe_delete_blend_state(struct pipe_context *pipe,
@@ -64,7 +64,7 @@ void llvmpipe_set_blend_color( struct pipe_context *pipe,
llvmpipe->blend_color = *blend_color;
- llvmpipe->dirty |= SP_NEW_BLEND;
+ llvmpipe->dirty |= LP_NEW_BLEND;
}
@@ -88,7 +88,7 @@ llvmpipe_bind_depth_stencil_state(struct pipe_context *pipe,
llvmpipe->depth_stencil = (const struct pipe_depth_stencil_alpha_state *)depth_stencil;
- llvmpipe->dirty |= SP_NEW_DEPTH_STENCIL_ALPHA;
+ llvmpipe->dirty |= LP_NEW_DEPTH_STENCIL_ALPHA;
}
void