summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_quad_alpha_test.c
blob: 947daf56955ffe7f7e23e28d0e3575788c4537c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112

/**
 * quad alpha test
 */

#include "lp_context.h"
#include "lp_quad.h"
#include "lp_quad_pipe.h"
#include "pipe/p_defines.h"
#include "util/u_memory.h"

#define ALPHATEST( FUNC, COMP )                                         \
   static void                                                          \
   alpha_test_quads_##FUNC( struct quad_stage *qs,                      \
                           struct quad_header *quads[],                 \
                           unsigned nr )                                \
   {                                                                    \
      const float ref = qs->llvmpipe->depth_stencil->alpha.ref_value;   \
      const uint cbuf = 0; /* only output[0].alpha is tested */         \
      unsigned pass_nr = 0;                                             \
      unsigned i;                                                       \
                                                                        \
      for (i = 0; i < nr; i++) {                                        \
         const float *aaaa = quads[i]->output.color[cbuf][3];           \
         unsigned passMask = 0;                                         \
                                                                        \
         if (aaaa[0] COMP ref) passMask |= (1 << 0);                    \
         if (aaaa[1] COMP ref) passMask |= (1 << 1);                    \
         if (aaaa[2] COMP ref) passMask |= (1 << 2);                    \
         if (aaaa[3] COMP ref) passMask |= (1 << 3);                    \
                                                                        \
         quads[i]->inout.mask &= passMask;                              \
                                                                        \
         if (quads[i]->inout.mask)                                      \
            quads[pass_nr++] = quads[i];                                \
      }                                                                 \
                                                                        \
      if (pass_nr)                                                      \
         qs->next->run(qs->next, quads, pass_nr);                       \
   }


ALPHATEST( LESS,     < )
ALPHATEST( EQUAL,    == )
ALPHATEST( LEQUAL,   <= )
ALPHATEST( GREATER,  > )
ALPHATEST( NOTEQUAL, != )
ALPHATEST( GEQUAL,   >= )


/* XXX: Incorporate into shader using KILP.
 */
static void
alpha_test_quad(struct quad_stage *qs, 
                struct quad_header *quads[], 
                unsigned nr)
{
   switch (qs->llvmpipe->depth_stencil->alpha.func) {
   case PIPE_FUNC_LESS:
      alpha_test_quads_LESS( qs, quads, nr );
      break;
   case PIPE_FUNC_EQUAL:
      alpha_test_quads_EQUAL( qs, quads, nr );
      break;
   case PIPE_FUNC_LEQUAL:
      alpha_test_quads_LEQUAL( qs, quads, nr );
      break;
   case PIPE_FUNC_GREATER:
      alpha_test_quads_GREATER( qs, quads, nr );
      break;
   case PIPE_FUNC_NOTEQUAL:
      alpha_test_quads_NOTEQUAL( qs, quads, nr );
      break;
   case PIPE_FUNC_GEQUAL:
      alpha_test_quads_GEQUAL( qs, quads, nr );
      break;
   case PIPE_FUNC_ALWAYS:
      assert(0); /* should be caught earlier */
      qs->next->run(qs->next, quads, nr);
      break;
   case PIPE_FUNC_NEVER:
   default:
      assert(0); /* should be caught earlier */
      return;
   }
}


static void alpha_test_begin(struct quad_stage *qs)
{
   qs->next->begin(qs->next);
}


static void alpha_test_destroy(struct quad_stage *qs)
{
   FREE( qs );
}


struct quad_stage *
lp_quad_alpha_test_stage( struct llvmpipe_context *llvmpipe )
{
   struct quad_stage *stage = CALLOC_STRUCT(quad_stage);

   stage->llvmpipe = llvmpipe;
   stage->begin = alpha_test_begin;
   stage->run = alpha_test_quad;
   stage->destroy = alpha_test_destroy;

   return stage;
}