summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_state_fs.c
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2010-10-09 20:14:03 +0100
committerJosé Fonseca <jfonseca@vmware.com>2010-10-09 20:14:03 +0100
commitd45c379027054e563c4f4379fb69fc9f68612f75 (patch)
treef5dfc4a0f8c27b79d5bfdca4f8aa3942d1741b55 /src/gallium/drivers/llvmpipe/lp_state_fs.c
parentea7b49028b15364a32988ec77ec88f2a6a591437 (diff)
gallivm: Remove support for Phi generation.
Simply rely on mem2reg pass. It's easier and more reliable.
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_state_fs.c')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_state_fs.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_state_fs.c b/src/gallium/drivers/llvmpipe/lp_state_fs.c
index cf07cb4976..3b0706e3ec 100644
--- a/src/gallium/drivers/llvmpipe/lp_state_fs.c
+++ b/src/gallium/drivers/llvmpipe/lp_state_fs.c
@@ -290,8 +290,6 @@ generate_fs(struct llvmpipe_context *lp,
memset(outputs, 0, sizeof outputs);
- lp_build_flow_scope_begin(flow);
-
/* Declare the color and z variables */
for(cbuf = 0; cbuf < key->nr_cbufs; cbuf++) {
for(chan = 0; chan < NUM_CHANNELS; ++chan) {
@@ -427,8 +425,6 @@ generate_fs(struct llvmpipe_context *lp,
*pmask = lp_build_mask_end(&mask);
- lp_build_flow_scope_end(flow);
-
lp_build_flow_destroy(flow);
}