summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_state_fs.c
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2009-08-22 23:30:28 +0100
committerJosé Fonseca <jfonseca@vmware.com>2009-08-29 09:21:41 +0100
commit97b4681d7e1ccf40d1584436ade7c70fc1893e27 (patch)
tree2fdebbcb38ba628beb0c3dcbd50e7bdd1cebe54e /src/gallium/drivers/llvmpipe/lp_state_fs.c
parent04de13b9cd0bd43c5cdcb3afab8e2c1c5a42aa33 (diff)
llvmpipe: Drop blend derived state.
Already included in the fragment shader.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_state_fs.c')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_state_fs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_state_fs.c b/src/gallium/drivers/llvmpipe/lp_state_fs.c
index a9b2d48244..cf0a90bc18 100644
--- a/src/gallium/drivers/llvmpipe/lp_state_fs.c
+++ b/src/gallium/drivers/llvmpipe/lp_state_fs.c
@@ -714,7 +714,7 @@ llvmpipe_update_fs(struct llvmpipe_context *lp)
memset(&key, 0, sizeof key);
memcpy(&key.depth, &lp->depth_stencil->depth, sizeof &key.depth);
memcpy(&key.alpha, &lp->depth_stencil->alpha, sizeof &key.alpha);
- memcpy(&key.blend, &lp->blend->base, sizeof &key.blend);
+ memcpy(&key.blend, lp->blend, sizeof &key.blend);
variant = shader->variants;
while(variant) {