summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/softpipe/sp_quad_alpha_test.c
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2007-07-10 16:25:43 -0600
committerBrian <brian.paul@tungstengraphics.com>2007-07-10 16:25:43 -0600
commitd015d2e0f45ad8e79ccb256b612597ef8ed51d4a (patch)
treee534f2026f90f9bd585c9397af06f92ccf1e1e07 /src/mesa/pipe/softpipe/sp_quad_alpha_test.c
parent093d1b42d0d867dae1bcb59d36f3f309994badff (diff)
Fill in remaining switch cases. Only call next stage if quad->mask != 0.
Diffstat (limited to 'src/mesa/pipe/softpipe/sp_quad_alpha_test.c')
-rw-r--r--src/mesa/pipe/softpipe/sp_quad_alpha_test.c57
1 files changed, 37 insertions, 20 deletions
diff --git a/src/mesa/pipe/softpipe/sp_quad_alpha_test.c b/src/mesa/pipe/softpipe/sp_quad_alpha_test.c
index e0f7225d74..8c28a824be 100644
--- a/src/mesa/pipe/softpipe/sp_quad_alpha_test.c
+++ b/src/mesa/pipe/softpipe/sp_quad_alpha_test.c
@@ -15,8 +15,8 @@ static void
alpha_test_quad(struct quad_stage *qs, struct quad_header *quad)
{
struct softpipe_context *softpipe = qs->softpipe;
- GLuint j;
const GLfloat ref = softpipe->alpha_test.ref;
+ GLuint passMask = 0x0, j;
switch (softpipe->alpha_test.func) {
case PIPE_FUNC_NEVER:
@@ -24,44 +24,61 @@ alpha_test_quad(struct quad_stage *qs, struct quad_header *quad)
break;
case PIPE_FUNC_LESS:
/*
- * If quad->mask were an array [4] we could do this SIMD-style:
- * quad->mask &= (quad->outputs.color[3] <= vec4(ref));
+ * If mask were an array [4] we could do this SIMD-style:
+ * passMask = (quad->outputs.color[3] <= vec4(ref));
*/
for (j = 0; j < QUAD_SIZE; j++) {
- if (quad->mask & (1 << j)) {
- if (quad->outputs.color[3][j] >= ref) {
- /* fail */
- quad->mask &= (1 << j);
- }
+ if (quad->outputs.color[3][j] < ref) {
+ passMask |= (1 << j);
}
}
break;
case PIPE_FUNC_EQUAL:
for (j = 0; j < QUAD_SIZE; j++) {
- if (quad->mask & (1 << j)) {
- if (quad->outputs.color[3][j] != ref) {
- /* fail */
- quad->mask &= (1 << j);
- }
+ if (quad->outputs.color[3][j] == ref) {
+ passMask |= (1 << j);
}
}
break;
case PIPE_FUNC_LEQUAL:
for (j = 0; j < QUAD_SIZE; j++) {
- if (quad->mask & (1 << j)) {
- if (quad->outputs.color[3][j] > ref) {
- /* fail */
- quad->mask &= (1 << j);
- }
+ if (quad->outputs.color[3][j] <= ref) {
+ passMask |= (1 << j);
}
}
break;
- /* XXX fill in remaining cases */
+ case PIPE_FUNC_GREATER:
+ for (j = 0; j < QUAD_SIZE; j++) {
+ if (quad->outputs.color[3][j] > ref) {
+ passMask |= (1 << j);
+ }
+ }
+ break;
+ case PIPE_FUNC_NOTEQUAL:
+ for (j = 0; j < QUAD_SIZE; j++) {
+ if (quad->outputs.color[3][j] != ref) {
+ passMask |= (1 << j);
+ }
+ }
+ break;
+ case PIPE_FUNC_GEQUAL:
+ for (j = 0; j < QUAD_SIZE; j++) {
+ if (quad->outputs.color[3][j] >= ref) {
+ passMask |= (1 << j);
+ }
+ }
+ break;
+ case PIPE_FUNC_ALWAYS:
+ passMask = MASK_ALL;
+ break;
default:
abort();
}
- qs->next->run(qs->next, quad);
+ quad->mask &= passMask;
+
+ if (quad->mask)
+ qs->next->run(qs->next, quad);
}