draw: remove dead data structures
[mesa.git] / src / gallium / auxiliary / draw / draw_private.h
1 /**************************************************************************
2 *
3 * Copyright 2007 Tungsten Graphics, Inc., Cedar Park, Texas.
4 * All Rights Reserved.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the
8 * "Software"), to deal in the Software without restriction, including
9 * without limitation the rights to use, copy, modify, merge, publish,
10 * distribute, sub license, and/or sell copies of the Software, and to
11 * permit persons to whom the Software is furnished to do so, subject to
12 * the following conditions:
13 *
14 * The above copyright notice and this permission notice (including the
15 * next paragraph) shall be included in all copies or substantial portions
16 * of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
19 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
21 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
22 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
23 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
24 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
25 *
26 **************************************************************************/
27
28 /**
29 * Private data structures, etc for the draw module.
30 */
31
32
33 /**
34 * Authors:
35 * Keith Whitwell <keith@tungstengraphics.com>
36 * Brian Paul
37 */
38
39
40 #ifndef DRAW_PRIVATE_H
41 #define DRAW_PRIVATE_H
42
43
44 #include "pipe/p_state.h"
45 #include "pipe/p_defines.h"
46
47 #include "rtasm/rtasm_x86sse.h"
48 #include "tgsi/exec/tgsi_exec.h"
49 #include "tgsi/util/tgsi_scan.h"
50
51
52 struct pipe_context;
53 struct gallivm_prog;
54 struct gallivm_cpu_engine;
55
56 struct draw_pt_middle_end;
57 struct draw_pt_front_end;
58 struct draw_vertex_shader;
59
60 #define MAX_SHADER_VERTICES 128
61
62 /**
63 * Basic vertex info.
64 * Carry some useful information around with the vertices in the prim pipe.
65 */
66 struct vertex_header {
67 unsigned clipmask:12;
68 unsigned edgeflag:1;
69 unsigned pad:3;
70 unsigned vertex_id:16;
71
72 float clip[4];
73
74 float data[][4]; /* Note variable size */
75 };
76
77 /* NOTE: It should match vertex_id size above */
78 #define UNDEFINED_VERTEX_ID 0xffff
79
80 /* XXX This is too large */
81 #define MAX_VERTEX_SIZE ((2 + PIPE_MAX_SHADER_OUTPUTS) * 4 * sizeof(float))
82 #define MAX_VERTEX_ALLOCATION ((MAX_VERTEX_SIZE + 0x0f) & ~0x0f)
83
84
85
86 /**
87 * Basic info for a point/line/triangle primitive.
88 */
89 struct prim_header {
90 float det; /**< front/back face determinant */
91 unsigned reset_line_stipple:1;
92 unsigned edgeflags:3;
93 unsigned pad:28;
94 struct vertex_header *v[3]; /**< 1 to 3 vertex pointers */
95 };
96
97
98
99 struct draw_context;
100
101 /**
102 * Base class for all primitive drawing stages.
103 */
104 struct draw_stage
105 {
106 struct draw_context *draw; /**< parent context */
107
108 struct draw_stage *next; /**< next stage in pipeline */
109
110 struct vertex_header **tmp; /**< temp vert storage, such as for clipping */
111 unsigned nr_tmps;
112
113 void (*point)( struct draw_stage *,
114 struct prim_header * );
115
116 void (*line)( struct draw_stage *,
117 struct prim_header * );
118
119 void (*tri)( struct draw_stage *,
120 struct prim_header * );
121
122 void (*flush)( struct draw_stage *,
123 unsigned flags );
124
125 void (*reset_stipple_counter)( struct draw_stage * );
126
127 void (*destroy)( struct draw_stage * );
128 };
129
130
131 #define PRIM_QUEUE_LENGTH 32
132 #define VCACHE_SIZE 32
133 #define VCACHE_OVERFLOW 4
134 #define VS_QUEUE_LENGTH (VCACHE_SIZE + VCACHE_OVERFLOW + 1) /* can never fill up */
135
136
137
138 /* Internal function for vertex fetch.
139 */
140 typedef void (*fetch_func)(const void *ptr, float *attrib);
141
142 fetch_func draw_get_fetch_func( enum pipe_format format );
143
144
145
146 typedef void (*full_fetch_func)( struct draw_context *draw,
147 struct tgsi_exec_machine *machine,
148 const unsigned *elts,
149 unsigned count );
150
151 typedef void (*pt_fetch_func)( struct draw_context *draw,
152 float *out,
153 unsigned start,
154 unsigned count );
155
156
157 struct vbuf_render;
158
159
160 #define PT_SHADE 0x1
161 #define PT_CLIPTEST 0x2
162 #define PT_PIPELINE 0x4
163 #define PT_MAX_MIDDLE 0x8
164
165 /**
166 * Private context for the drawing module.
167 */
168 struct draw_context
169 {
170 /** Drawing/primitive pipeline stages */
171 struct {
172 struct draw_stage *first; /**< one of the following */
173
174 struct draw_stage *validate;
175
176 /* stages (in logical order) */
177 struct draw_stage *flatshade;
178 struct draw_stage *clip;
179 struct draw_stage *cull;
180 struct draw_stage *twoside;
181 struct draw_stage *offset;
182 struct draw_stage *unfilled;
183 struct draw_stage *stipple;
184 struct draw_stage *aapoint;
185 struct draw_stage *aaline;
186 struct draw_stage *pstipple;
187 struct draw_stage *wide_line;
188 struct draw_stage *wide_point;
189 struct draw_stage *rasterize;
190 } pipeline;
191
192
193 struct vbuf_render *render;
194
195 /* Support prototype passthrough path:
196 */
197 struct {
198 struct {
199 struct draw_pt_middle_end *opt[PT_MAX_MIDDLE];
200 } middle;
201
202 struct {
203 struct draw_pt_front_end *vcache;
204 } front;
205
206 struct {
207 char *verts;
208 unsigned vertex_stride;
209 unsigned vertex_count;
210 } pipeline;
211
212 } pt;
213
214 boolean flushing;
215
216 /* pipe state that we need: */
217 const struct pipe_rasterizer_state *rasterizer;
218 struct pipe_viewport_state viewport;
219
220 struct pipe_vertex_buffer vertex_buffer[PIPE_MAX_ATTRIBS];
221 unsigned nr_vertex_buffers;
222
223 struct pipe_vertex_element vertex_element[PIPE_MAX_ATTRIBS];
224 unsigned nr_vertex_elements;
225
226 struct draw_vertex_shader *vertex_shader;
227
228 boolean identity_viewport;
229
230 uint num_vs_outputs; /**< convenience, from vertex_shader */
231
232 /* user-space vertex data, buffers */
233 struct {
234 const unsigned *edgeflag;
235
236 /** vertex element/index buffer (ex: glDrawElements) */
237 const void *elts;
238 /** bytes per index (0, 1, 2 or 4) */
239 unsigned eltSize;
240
241 /** vertex arrays */
242 const void *vbuffer[PIPE_MAX_ATTRIBS];
243
244 /** constant buffer (for vertex shader) */
245 const void *constants;
246 } user;
247
248 /* Clip derived state:
249 */
250 float plane[12][4];
251 unsigned nr_planes;
252
253 float wide_point_threshold; /**< convert pnts to tris if larger than this */
254 float wide_line_threshold; /**< convert lines to tris if wider than this */
255 boolean line_stipple; /**< do line stipple? */
256 boolean point_sprite; /**< convert points to quads for sprites? */
257 boolean use_sse;
258
259 /* If a prim stage introduces new vertex attributes, they'll be stored here
260 */
261 struct {
262 uint semantic_name;
263 uint semantic_index;
264 int slot;
265 } extra_vp_outputs;
266
267 unsigned reduced_prim;
268
269 /** TGSI program interpreter runtime state */
270 struct tgsi_exec_machine machine;
271
272 /* This (and the tgsi_exec_machine struct) probably need to be moved somewhere private.
273 */
274 struct gallivm_cpu_engine *engine;
275 void *driver_private;
276 };
277
278
279
280 extern struct draw_stage *draw_unfilled_stage( struct draw_context *context );
281 extern struct draw_stage *draw_twoside_stage( struct draw_context *context );
282 extern struct draw_stage *draw_offset_stage( struct draw_context *context );
283 extern struct draw_stage *draw_clip_stage( struct draw_context *context );
284 extern struct draw_stage *draw_flatshade_stage( struct draw_context *context );
285 extern struct draw_stage *draw_cull_stage( struct draw_context *context );
286 extern struct draw_stage *draw_stipple_stage( struct draw_context *context );
287 extern struct draw_stage *draw_wide_line_stage( struct draw_context *context );
288 extern struct draw_stage *draw_wide_point_stage( struct draw_context *context );
289 extern struct draw_stage *draw_validate_stage( struct draw_context *context );
290
291
292 extern void draw_free_temp_verts( struct draw_stage *stage );
293
294 extern void draw_alloc_temp_verts( struct draw_stage *stage, unsigned nr );
295
296 extern void draw_reset_vertex_ids( struct draw_context *draw );
297
298
299 extern int draw_vertex_cache_check_space( struct draw_context *draw,
300 unsigned nr_verts );
301
302 extern void draw_vertex_cache_invalidate( struct draw_context *draw );
303 extern void draw_vertex_cache_unreference( struct draw_context *draw );
304 extern void draw_vertex_cache_reset_vertex_ids( struct draw_context *draw );
305
306
307 extern void draw_update_vertex_fetch( struct draw_context *draw );
308
309 extern boolean draw_need_pipeline(const struct draw_context *draw,
310 unsigned prim );
311
312
313 /* Passthrough mode (second attempt):
314 */
315 boolean draw_pt_init( struct draw_context *draw );
316 void draw_pt_destroy( struct draw_context *draw );
317 boolean draw_pt_arrays( struct draw_context *draw,
318 unsigned prim,
319 unsigned start,
320 unsigned count );
321
322 void draw_pt_reset_vertex_ids( struct draw_context *draw );
323
324 #define DRAW_FLUSH_STATE_CHANGE 0x8
325 #define DRAW_FLUSH_BACKEND 0x10
326
327
328 void draw_do_flush( struct draw_context *draw, unsigned flags );
329
330 boolean draw_get_edgeflag( struct draw_context *draw,
331 unsigned idx );
332
333
334 /**
335 * Get a writeable copy of a vertex.
336 * \param stage drawing stage info
337 * \param vert the vertex to copy (source)
338 * \param idx index into stage's tmp[] array to put the copy (dest)
339 * \return pointer to the copied vertex
340 */
341 static INLINE struct vertex_header *
342 dup_vert( struct draw_stage *stage,
343 const struct vertex_header *vert,
344 unsigned idx )
345 {
346 struct vertex_header *tmp = stage->tmp[idx];
347 const uint vsize = sizeof(struct vertex_header)
348 + stage->draw->num_vs_outputs * 4 * sizeof(float);
349 memcpy(tmp, vert, vsize);
350 tmp->vertex_id = UNDEFINED_VERTEX_ID;
351 return tmp;
352 }
353
354 static INLINE float
355 dot4(const float *a, const float *b)
356 {
357 float result = (a[0]*b[0] +
358 a[1]*b[1] +
359 a[2]*b[2] +
360 a[3]*b[3]);
361
362 return result;
363 }
364
365
366 #endif /* DRAW_PRIVATE_H */