summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/softpipe/sp_quad.c
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-06-21 20:08:10 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-06-21 20:08:10 -0600
commit493ed9fc11a2bf272a2c1e9e5a072e4f02b46554 (patch)
treeb43acdceb59b9764b3e0f5995b538af987e67ec9 /src/mesa/pipe/softpipe/sp_quad.c
parentecfa794037e8be351ecfec0229d1e3b1677ae369 (diff)
alpha test and misc changes
Diffstat (limited to 'src/mesa/pipe/softpipe/sp_quad.c')
-rw-r--r--src/mesa/pipe/softpipe/sp_quad.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/mesa/pipe/softpipe/sp_quad.c b/src/mesa/pipe/softpipe/sp_quad.c
index 32085ab8c4..63126a4da3 100644
--- a/src/mesa/pipe/softpipe/sp_quad.c
+++ b/src/mesa/pipe/softpipe/sp_quad.c
@@ -21,6 +21,11 @@ sp_build_quad_pipeline(struct softpipe_context *sp)
sp->quad.first = sp->quad.depth_test;
}
+ if (sp->alpha_test.enabled) {
+ sp->quad.alpha_test->next = sp->quad.first;
+ sp->quad.first = sp->quad.alpha_test;
+ }
+
/* XXX always enable shader? */
if (1) {
sp->quad.shade->next = sp->quad.first;