summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/draw/draw_pt_varray.c
blob: 022098a314f9a8a6ba1dd0e61379fbe0e1451332 (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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
/**************************************************************************
 *
 * Copyright 2008 Tungsten Graphics, Inc., Cedar Park, Texas.
 * All Rights Reserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the
 * "Software"), to deal in the Software without restriction, including
 * without limitation the rights to use, copy, modify, merge, publish,
 * distribute, sub license, and/or sell copies of the Software, and to
 * permit persons to whom the Software is furnished to do so, subject to
 * the following conditions:
 *
 * The above copyright notice and this permission notice (including the
 * next paragraph) shall be included in all copies or substantial portions
 * of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 *
 **************************************************************************/

#include "pipe/p_util.h"
#include "draw/draw_context.h"
#include "draw/draw_private.h"
#include "draw/draw_pt.h"

#define FETCH_MAX 256
#define DRAW_MAX (16*FETCH_MAX)

struct varray_frontend {
   struct draw_pt_front_end base;
   struct draw_context *draw;

   ushort draw_elts[DRAW_MAX];
   unsigned fetch_elts[FETCH_MAX];

   unsigned draw_count;
   unsigned fetch_count;

   struct draw_pt_middle_end *middle;

   unsigned input_prim;
   unsigned output_prim;
};

static void varray_flush(struct varray_frontend *varray)
{
   if (varray->draw_count) {
#if 0
      debug_printf("FLUSH fc = %d, dc = %d\n",
                   varray->fetch_count,
                   varray->draw_count);
#endif
      varray->middle->run(varray->middle,
                          varray->fetch_elts,
                          varray->fetch_count,
                          varray->draw_elts,
                          varray->draw_count);
   }

   varray->fetch_count = 0;
   varray->draw_count = 0;
}

#if 0
static void varray_check_flush(struct varray_frontend *varray)
{
   if (varray->draw_count + 6 >= DRAW_MAX/* ||
       varray->fetch_count + 4 >= FETCH_MAX*/) {
      varray_flush(varray);
   }
}
#endif

static INLINE void add_draw_el(struct varray_frontend *varray,
                               int idx, ushort flags)
{
   varray->draw_elts[varray->draw_count++] = idx | flags;
}


static INLINE void varray_triangle( struct varray_frontend *varray,
                                    unsigned i0,
                                    unsigned i1,
                                    unsigned i2 )
{
   add_draw_el(varray, i0, 0);
   add_draw_el(varray, i1, 0);
   add_draw_el(varray, i2, 0);
}

static INLINE void varray_triangle_flags( struct varray_frontend *varray,
                                          ushort flags,
                                          unsigned i0,
                                          unsigned i1,
                                          unsigned i2 )
{
   add_draw_el(varray, i0, flags);
   add_draw_el(varray, i1, 0);
   add_draw_el(varray, i2, 0);
}

static INLINE void varray_line( struct varray_frontend *varray,
                                unsigned i0,
                                unsigned i1 )
{
   add_draw_el(varray, i0, 0);
   add_draw_el(varray, i1, 0);
}


static INLINE void varray_line_flags( struct varray_frontend *varray,
                                      ushort flags,
                                      unsigned i0,
                                      unsigned i1 )
{
   add_draw_el(varray, i0, flags);
   add_draw_el(varray, i1, 0);
}


static INLINE void varray_point( struct varray_frontend *varray,
                                 unsigned i0 )
{
   add_draw_el(varray, i0, 0);
}

static INLINE void varray_quad( struct varray_frontend *varray,
                                unsigned i0,
                                unsigned i1,
                                unsigned i2,
                                unsigned i3 )
{
   varray_triangle( varray, i0, i1, i3 );
   varray_triangle( varray, i1, i2, i3 );
}

static INLINE void varray_ef_quad( struct varray_frontend *varray,
                                   unsigned i0,
                                   unsigned i1,
                                   unsigned i2,
                                   unsigned i3 )
{
   const unsigned omitEdge1 = DRAW_PIPE_EDGE_FLAG_0 | DRAW_PIPE_EDGE_FLAG_2;
   const unsigned omitEdge2 = DRAW_PIPE_EDGE_FLAG_0 | DRAW_PIPE_EDGE_FLAG_1;

   varray_triangle_flags( varray,
                          DRAW_PIPE_RESET_STIPPLE | omitEdge1,
                          i0, i1, i3 );

   varray_triangle_flags( varray,
                          omitEdge2,
                          i1, i2, i3 );
}

/* At least for now, we're back to using a template include file for
 * this.  The two paths aren't too different though - it may be
 * possible to reunify them.
 */
#define TRIANGLE(vc,flags,i0,i1,i2) varray_triangle_flags(vc,flags,i0,i1,i2)
#define QUAD(vc,i0,i1,i2,i3)        varray_ef_quad(vc,i0,i1,i2,i3)
#define LINE(vc,flags,i0,i1)        varray_line_flags(vc,flags,i0,i1)
#define POINT(vc,i0)                varray_point(vc,i0)
#define FUNC varray_run_extras
#include "draw_pt_varray_tmp.h"

#define TRIANGLE(vc,flags,i0,i1,i2) varray_triangle(vc,i0,i1,i2)
#define QUAD(vc,i0,i1,i2,i3)        varray_quad(vc,i0,i1,i2,i3)
#define LINE(vc,flags,i0,i1)        varray_line(vc,i0,i1)
#define POINT(vc,i0)                varray_point(vc,i0)
#define FUNC varray_run
#include "draw_pt_varray_tmp.h"



static unsigned reduced_prim[PIPE_PRIM_POLYGON + 1] = {
   PIPE_PRIM_POINTS,
   PIPE_PRIM_LINES,
   PIPE_PRIM_LINES,
   PIPE_PRIM_LINES,
   PIPE_PRIM_TRIANGLES,
   PIPE_PRIM_TRIANGLES,
   PIPE_PRIM_TRIANGLES,
   PIPE_PRIM_TRIANGLES,
   PIPE_PRIM_TRIANGLES,
   PIPE_PRIM_TRIANGLES
};



static void varray_prepare(struct draw_pt_front_end *frontend,
                           unsigned prim,
                           struct draw_pt_middle_end *middle,
                           unsigned opt)
{
   struct varray_frontend *varray = (struct varray_frontend *)frontend;
   const struct pipe_rasterizer_state *rasterizer = varray->draw->rasterizer;

   if (rasterizer->fill_cw != PIPE_POLYGON_MODE_FILL ||
       rasterizer->fill_ccw != PIPE_POLYGON_MODE_FILL ||
       rasterizer->line_stipple_enable)
   {
      assert(opt & PT_PIPELINE);
      varray->base.run = varray_run_extras;
   } else {
      varray->base.run = varray_run;
   }

   varray->input_prim = prim;
   varray->output_prim = reduced_prim[prim];

   varray->middle = middle;
   middle->prepare(middle, varray->output_prim, opt);
}




static void varray_finish(struct draw_pt_front_end *frontend)
{
   struct varray_frontend *varray = (struct varray_frontend *)frontend;
   varray->middle->finish(varray->middle);
   varray->middle = NULL;
}

static void varray_destroy(struct draw_pt_front_end *frontend)
{
   FREE(frontend);
}


struct draw_pt_front_end *draw_pt_varray(struct draw_context *draw)
{
   struct varray_frontend *varray = CALLOC_STRUCT(varray_frontend);
   if (varray == NULL)
      return NULL;

   varray->base.prepare = varray_prepare;
   varray->base.run     = NULL;
   varray->base.finish  = varray_finish;
   varray->base.destroy = varray_destroy;
   varray->draw = draw;

   return &varray->base;
}