Revert "svga: add work-around for Sauerbraten Z fighting issue"
[mesa.git] / src / gallium / drivers / svga / svga_context.h
1 /**********************************************************
2 * Copyright 2008-2009 VMware, Inc. All rights reserved.
3 *
4 * Permission is hereby granted, free of charge, to any person
5 * obtaining a copy of this software and associated documentation
6 * files (the "Software"), to deal in the Software without
7 * restriction, including without limitation the rights to use, copy,
8 * modify, merge, publish, distribute, sublicense, and/or sell copies
9 * of the Software, and to permit persons to whom the Software is
10 * furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice shall be
13 * included in all copies or substantial portions of the Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
19 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
20 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
21 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 *
24 **********************************************************/
25
26 #ifndef SVGA_CONTEXT_H
27 #define SVGA_CONTEXT_H
28
29
30 #include "pipe/p_context.h"
31 #include "pipe/p_defines.h"
32 #include "pipe/p_state.h"
33
34 #include "util/u_blitter.h"
35 #include "util/u_double_list.h"
36
37 #include "tgsi/tgsi_scan.h"
38
39 #include "svga_screen.h"
40 #include "svga_state.h"
41 #include "svga_tgsi.h"
42 #include "svga_winsys.h"
43 #include "svga_hw_reg.h"
44 #include "svga3d_shaderdefs.h"
45
46
47 /** Non-GPU queries for gallium HUD */
48 #define SVGA_QUERY_DRAW_CALLS (PIPE_QUERY_DRIVER_SPECIFIC + 0)
49 #define SVGA_QUERY_FALLBACKS (PIPE_QUERY_DRIVER_SPECIFIC + 1)
50 #define SVGA_QUERY_MEMORY_USED (PIPE_QUERY_DRIVER_SPECIFIC + 2)
51
52
53 struct draw_vertex_shader;
54 struct draw_fragment_shader;
55 struct svga_shader_variant;
56 struct SVGACmdMemory;
57 struct util_bitmask;
58
59
60 struct svga_shader
61 {
62 const struct tgsi_token *tokens;
63
64 struct tgsi_shader_info info;
65
66 /** Head of linked list of variants */
67 struct svga_shader_variant *variants;
68
69 unsigned id; /**< for debugging only */
70 };
71
72
73 struct svga_fragment_shader
74 {
75 struct svga_shader base;
76
77 struct draw_fragment_shader *draw_shader;
78
79 /** Mask of which generic varying variables are read by this shader */
80 unsigned generic_inputs;
81 /** Table mapping original TGSI generic indexes to low integers */
82 int8_t generic_remap_table[MAX_GENERIC_VARYING];
83 };
84
85
86 struct svga_vertex_shader
87 {
88 struct svga_shader base;
89
90 struct draw_vertex_shader *draw_shader;
91 };
92
93
94 struct svga_cache_context;
95 struct svga_tracked_state;
96
97 struct svga_blend_state {
98
99 boolean need_white_fragments;
100
101 /* Should be per-render-target:
102 */
103 struct {
104 uint8_t writemask;
105
106 boolean blend_enable;
107 uint8_t srcblend;
108 uint8_t dstblend;
109 uint8_t blendeq;
110
111 boolean separate_alpha_blend_enable;
112 uint8_t srcblend_alpha;
113 uint8_t dstblend_alpha;
114 uint8_t blendeq_alpha;
115
116 } rt[1];
117 };
118
119 struct svga_depth_stencil_state {
120 unsigned zfunc:8;
121 unsigned zenable:1;
122 unsigned zwriteenable:1;
123
124 unsigned alphatestenable:1;
125 unsigned alphafunc:8;
126
127 struct {
128 unsigned enabled:1;
129 unsigned func:8;
130 unsigned fail:8;
131 unsigned zfail:8;
132 unsigned pass:8;
133 } stencil[2];
134
135 /* SVGA3D has one ref/mask/writemask triple shared between front &
136 * back face stencil. We really need two:
137 */
138 unsigned stencil_mask:8;
139 unsigned stencil_writemask:8;
140
141 float alpharef;
142 };
143
144 #define SVGA_UNFILLED_DISABLE 0
145 #define SVGA_UNFILLED_LINE 1
146 #define SVGA_UNFILLED_POINT 2
147
148 #define SVGA_PIPELINE_FLAG_POINTS (1<<PIPE_PRIM_POINTS)
149 #define SVGA_PIPELINE_FLAG_LINES (1<<PIPE_PRIM_LINES)
150 #define SVGA_PIPELINE_FLAG_TRIS (1<<PIPE_PRIM_TRIANGLES)
151
152 struct svga_rasterizer_state {
153 struct pipe_rasterizer_state templ; /* needed for draw module */
154
155 unsigned shademode:8;
156 unsigned cullmode:8;
157 unsigned scissortestenable:1;
158 unsigned multisampleantialias:1;
159 unsigned antialiasedlineenable:1;
160 unsigned lastpixel:1;
161 unsigned pointsprite:1;
162
163 unsigned linepattern;
164
165 float slopescaledepthbias;
166 float depthbias;
167 float pointsize;
168 float linewidth;
169
170 unsigned hw_unfilled:16; /* PIPE_POLYGON_MODE_x */
171
172 /** Which prims do we need help for? Bitmask of (1 << PIPE_PRIM_x) flags */
173 unsigned need_pipeline:16;
174
175 /** For debugging: */
176 const char* need_pipeline_tris_str;
177 const char* need_pipeline_lines_str;
178 const char* need_pipeline_points_str;
179 };
180
181 struct svga_sampler_state {
182 unsigned mipfilter;
183 unsigned magfilter;
184 unsigned minfilter;
185 unsigned aniso_level;
186 float lod_bias;
187 unsigned addressu;
188 unsigned addressv;
189 unsigned addressw;
190 unsigned bordercolor;
191 unsigned normalized_coords:1;
192 unsigned compare_mode:1;
193 unsigned compare_func:3;
194
195 unsigned min_lod;
196 unsigned view_min_lod;
197 unsigned view_max_lod;
198 };
199
200 struct svga_velems_state {
201 unsigned count;
202 struct pipe_vertex_element velem[PIPE_MAX_ATTRIBS];
203 };
204
205 /* Use to calculate differences between state emitted to hardware and
206 * current driver-calculated state.
207 */
208 struct svga_state
209 {
210 const struct svga_blend_state *blend;
211 const struct svga_depth_stencil_state *depth;
212 const struct svga_rasterizer_state *rast;
213 const struct svga_sampler_state *sampler[PIPE_MAX_SAMPLERS];
214 const struct svga_velems_state *velems;
215
216 struct pipe_sampler_view *sampler_views[PIPE_MAX_SAMPLERS]; /* or texture ID's? */
217 struct svga_fragment_shader *fs;
218 struct svga_vertex_shader *vs;
219
220 struct pipe_vertex_buffer vb[PIPE_MAX_ATTRIBS];
221 struct pipe_index_buffer ib;
222 struct pipe_constant_buffer cbufs[PIPE_SHADER_TYPES];
223
224 struct pipe_framebuffer_state framebuffer;
225 float depthscale;
226
227 /* Hack to limit the number of different render targets between
228 * flushes. Helps avoid blowing out our surface cache in EXA.
229 */
230 int nr_fbs;
231
232 struct pipe_poly_stipple poly_stipple;
233 struct pipe_scissor_state scissor;
234 struct pipe_blend_color blend_color;
235 struct pipe_stencil_ref stencil_ref;
236 struct pipe_clip_state clip;
237 struct pipe_viewport_state viewport;
238
239 unsigned num_samplers;
240 unsigned num_sampler_views;
241 unsigned num_vertex_buffers;
242 unsigned reduced_prim;
243
244 struct {
245 unsigned flag_1d;
246 unsigned flag_srgb;
247 } tex_flags;
248 };
249
250 struct svga_prescale {
251 float translate[4];
252 float scale[4];
253 boolean enabled;
254 };
255
256
257 /* Updated by calling svga_update_state( SVGA_STATE_HW_CLEAR )
258 */
259 struct svga_hw_clear_state
260 {
261 struct {
262 unsigned x,y,w,h;
263 } viewport;
264
265 struct {
266 float zmin, zmax;
267 } depthrange;
268
269 struct pipe_framebuffer_state framebuffer;
270 struct svga_prescale prescale;
271 };
272
273 struct svga_hw_view_state
274 {
275 struct pipe_resource *texture;
276 struct svga_sampler_view *v;
277 unsigned min_lod;
278 unsigned max_lod;
279 int dirty;
280 };
281
282 /* Updated by calling svga_update_state( SVGA_STATE_HW_DRAW )
283 */
284 struct svga_hw_draw_state
285 {
286 unsigned rs[SVGA3D_RS_MAX];
287 unsigned ts[SVGA3D_PIXEL_SAMPLERREG_MAX][SVGA3D_TS_MAX];
288 float cb[PIPE_SHADER_TYPES][SVGA3D_CONSTREG_MAX][4];
289
290 /**
291 * For guest backed shader constants only.
292 */
293 struct svga_winsys_surface *hw_cb[PIPE_SHADER_TYPES];
294
295 struct svga_shader_variant *fs;
296 struct svga_shader_variant *vs;
297 struct svga_hw_view_state views[PIPE_MAX_SAMPLERS];
298
299 unsigned num_views;
300 };
301
302
303 /* Updated by calling svga_update_state( SVGA_STATE_NEED_SWTNL )
304 */
305 struct svga_sw_state
306 {
307 unsigned ve_format[PIPE_MAX_ATTRIBS]; /* NEW_VELEMENT */
308
309 /* which parts we need */
310 boolean need_swvfetch;
311 boolean need_pipeline;
312 boolean need_swtnl;
313
314 /* Flag to make sure that need sw is on while
315 * updating state within a swtnl call.
316 */
317 boolean in_swtnl_draw;
318 };
319
320
321 /* Queue some state updates (like rss) and submit them to hardware in
322 * a single packet.
323 */
324 struct svga_hw_queue;
325
326 struct svga_query;
327
328 struct svga_context
329 {
330 struct pipe_context pipe;
331 struct svga_winsys_context *swc;
332 struct blitter_context *blitter;
333
334 struct {
335 boolean no_swtnl;
336 boolean force_swtnl;
337 boolean use_min_mipmap;
338
339 /* incremented for each shader */
340 unsigned shader_id;
341
342 unsigned disable_shader;
343
344 boolean no_line_width;
345 boolean force_hw_line_stipple;
346 } debug;
347
348 struct {
349 struct draw_context *draw;
350 struct vbuf_render *backend;
351 unsigned hw_prim;
352 boolean new_vbuf;
353 boolean new_vdecl;
354 } swtnl;
355
356 /* Bitmask of used shader IDs */
357 struct util_bitmask *shader_id_bm;
358
359 struct {
360 unsigned dirty[SVGA_STATE_MAX];
361
362 unsigned texture_timestamp;
363
364 /*
365 */
366 struct svga_sw_state sw;
367 struct svga_hw_draw_state hw_draw;
368 struct svga_hw_clear_state hw_clear;
369 } state;
370
371 struct svga_state curr; /* state from the state tracker */
372 unsigned dirty; /* statechanges since last update_state() */
373
374 struct {
375 unsigned rendertargets:1;
376 unsigned texture_samplers:1;
377 unsigned vs:1;
378 unsigned fs:1;
379 } rebind;
380
381 struct svga_hwtnl *hwtnl;
382
383 /** The occlusion query currently in progress */
384 struct svga_query *sq;
385
386 /** List of buffers with queued transfers */
387 struct list_head dirty_buffers;
388
389 /** performance / info queries */
390 uint64_t num_draw_calls; /**< SVGA_QUERY_DRAW_CALLS */
391 uint64_t num_fallbacks; /**< SVGA_QUERY_FALLBACKS */
392 };
393
394 /* A flag for each state_tracker state object:
395 */
396 #define SVGA_NEW_BLEND 0x1
397 #define SVGA_NEW_DEPTH_STENCIL 0x2
398 #define SVGA_NEW_RAST 0x4
399 #define SVGA_NEW_SAMPLER 0x8
400 #define SVGA_NEW_TEXTURE 0x10
401 #define SVGA_NEW_VBUFFER 0x20
402 #define SVGA_NEW_VELEMENT 0x40
403 #define SVGA_NEW_FS 0x80
404 #define SVGA_NEW_VS 0x100
405 #define SVGA_NEW_FS_CONST_BUFFER 0x200
406 #define SVGA_NEW_VS_CONST_BUFFER 0x400
407 #define SVGA_NEW_FRAME_BUFFER 0x800
408 #define SVGA_NEW_STIPPLE 0x1000
409 #define SVGA_NEW_SCISSOR 0x2000
410 #define SVGA_NEW_BLEND_COLOR 0x4000
411 #define SVGA_NEW_CLIP 0x8000
412 #define SVGA_NEW_VIEWPORT 0x10000
413 #define SVGA_NEW_PRESCALE 0x20000
414 #define SVGA_NEW_REDUCED_PRIMITIVE 0x40000
415 #define SVGA_NEW_TEXTURE_BINDING 0x80000
416 #define SVGA_NEW_NEED_PIPELINE 0x100000
417 #define SVGA_NEW_NEED_SWVFETCH 0x200000
418 #define SVGA_NEW_NEED_SWTNL 0x400000
419 #define SVGA_NEW_FS_VARIANT 0x800000
420 #define SVGA_NEW_VS_VARIANT 0x1000000
421 #define SVGA_NEW_TEXTURE_FLAGS 0x4000000
422 #define SVGA_NEW_STENCIL_REF 0x8000000
423
424
425
426
427
428 /***********************************************************************
429 * svga_clear.c:
430 */
431 void svga_clear(struct pipe_context *pipe,
432 unsigned buffers,
433 const union pipe_color_union *color,
434 double depth,
435 unsigned stencil);
436
437
438 /***********************************************************************
439 * svga_screen_texture.c:
440 */
441 void svga_mark_surfaces_dirty(struct svga_context *svga);
442
443
444
445
446 void svga_init_state_functions( struct svga_context *svga );
447 void svga_init_flush_functions( struct svga_context *svga );
448 void svga_init_string_functions( struct svga_context *svga );
449 void svga_init_blit_functions(struct svga_context *svga);
450
451 void svga_init_blend_functions( struct svga_context *svga );
452 void svga_init_depth_stencil_functions( struct svga_context *svga );
453 void svga_init_misc_functions( struct svga_context *svga );
454 void svga_init_rasterizer_functions( struct svga_context *svga );
455 void svga_init_sampler_functions( struct svga_context *svga );
456 void svga_init_fs_functions( struct svga_context *svga );
457 void svga_init_vs_functions( struct svga_context *svga );
458 void svga_init_vertex_functions( struct svga_context *svga );
459 void svga_init_constbuffer_functions( struct svga_context *svga );
460 void svga_init_draw_functions( struct svga_context *svga );
461 void svga_init_query_functions( struct svga_context *svga );
462 void svga_init_surface_functions(struct svga_context *svga);
463
464 void svga_cleanup_vertex_state( struct svga_context *svga );
465 void svga_cleanup_tss_binding( struct svga_context *svga );
466 void svga_cleanup_framebuffer( struct svga_context *svga );
467
468 void svga_context_flush( struct svga_context *svga,
469 struct pipe_fence_handle **pfence );
470
471 void svga_hwtnl_flush_retry( struct svga_context *svga );
472 void svga_hwtnl_flush_buffer( struct svga_context *svga,
473 struct pipe_resource *buffer );
474
475 void svga_surfaces_flush(struct svga_context *svga);
476
477 struct pipe_context *
478 svga_context_create(struct pipe_screen *screen,
479 void *priv);
480
481
482 /***********************************************************************
483 * Inline conversion functions. These are better-typed than the
484 * macros used previously:
485 */
486 static INLINE struct svga_context *
487 svga_context( struct pipe_context *pipe )
488 {
489 return (struct svga_context *)pipe;
490 }
491
492
493 static INLINE boolean
494 svga_have_gb_objects(const struct svga_context *svga)
495 {
496 return svga_screen(svga->pipe.screen)->sws->have_gb_objects;
497 }
498
499 static INLINE boolean
500 svga_have_gb_dma(const struct svga_context *svga)
501 {
502 return svga_screen(svga->pipe.screen)->sws->have_gb_dma;
503 }
504
505
506 #endif