r300g: remove unused r300_resource::tex_offset
[mesa.git] / src / gallium / drivers / r300 / r300_context.h
1 /*
2 * Copyright 2008 Corbin Simpson <MostAwesomeDude@gmail.com>
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * on the rights to use, copy, modify, merge, publish, distribute, sub
8 * license, and/or sell copies of the Software, and to permit persons to whom
9 * the Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
19 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
20 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
21 * USE OR OTHER DEALINGS IN THE SOFTWARE. */
22
23 #ifndef R300_CONTEXT_H
24 #define R300_CONTEXT_H
25
26 #include "draw/draw_vertex.h"
27
28 #include "util/u_blitter.h"
29
30 #include "pipe/p_context.h"
31 #include "util/u_inlines.h"
32 #include "util/u_transfer.h"
33 #include "util/u_vbuf_mgr.h"
34
35 #include "r300_defines.h"
36 #include "r300_screen.h"
37 #include "../../winsys/radeon/drm/radeon_winsys.h"
38
39 struct u_upload_mgr;
40 struct r300_context;
41 struct r300_fragment_shader;
42 struct r300_vertex_shader;
43 struct r300_stencilref_context;
44
45 struct r300_atom {
46 /* Name, for debugging. */
47 const char* name;
48 /* Opaque state. */
49 void* state;
50 /* Emit the state to the context. */
51 void (*emit)(struct r300_context*, unsigned, void*);
52 /* Upper bound on number of dwords to emit. */
53 unsigned size;
54 /* Whether this atom should be emitted. */
55 boolean dirty;
56 /* Whether this atom may be emitted with state == NULL. */
57 boolean allow_null_state;
58 };
59
60 struct r300_aa_state {
61 struct r300_surface *dest;
62
63 uint32_t aa_config;
64 uint32_t aaresolve_ctl;
65 };
66
67 struct r300_blend_state {
68 struct pipe_blend_state state;
69
70 uint32_t cb_clamp[8];
71 uint32_t cb_noclamp[8];
72 uint32_t cb_no_readwrite[8];
73 };
74
75 struct r300_blend_color_state {
76 struct pipe_blend_color state;
77 uint32_t cb[3];
78 };
79
80 struct r300_clip_state {
81 struct pipe_clip_state clip;
82
83 uint32_t cb[29];
84 };
85
86 struct r300_dsa_state {
87 struct pipe_depth_stencil_alpha_state dsa;
88
89 /* This is actually a command buffer with named dwords. */
90 uint32_t cb_begin;
91 uint32_t alpha_function; /* R300_FG_ALPHA_FUNC: 0x4bd4 */
92 uint32_t cb_reg_seq;
93 uint32_t z_buffer_control; /* R300_ZB_CNTL: 0x4f00 */
94 uint32_t z_stencil_control; /* R300_ZB_ZSTENCILCNTL: 0x4f04 */
95 uint32_t stencil_ref_mask; /* R300_ZB_STENCILREFMASK: 0x4f08 */
96 uint32_t cb_reg;
97 uint32_t stencil_ref_bf; /* R500_ZB_STENCILREFMASK_BF: 0x4fd4 */
98 uint32_t cb_reg1;
99 uint32_t alpha_value; /* R500_FG_ALPHA_VALUE: 0x4be0 */
100
101 /* The same, but for FP16 alpha test. */
102 uint32_t cb_begin_fp16;
103 uint32_t alpha_function_fp16; /* R300_FG_ALPHA_FUNC: 0x4bd4 */
104 uint32_t cb_reg_seq_fp16;
105 uint32_t z_buffer_control_fp16; /* R300_ZB_CNTL: 0x4f00 */
106 uint32_t z_stencil_control_fp16; /* R300_ZB_ZSTENCILCNTL: 0x4f04 */
107 uint32_t stencil_ref_mask_fp16; /* R300_ZB_STENCILREFMASK: 0x4f08 */
108 uint32_t cb_reg_fp16;
109 uint32_t stencil_ref_bf_fp16; /* R500_ZB_STENCILREFMASK_BF: 0x4fd4 */
110 uint32_t cb_reg1_fp16;
111 uint32_t alpha_value_fp16; /* R500_FG_ALPHA_VALUE: 0x4be0 */
112
113 /* The second command buffer disables zbuffer reads and writes. */
114 uint32_t cb_zb_no_readwrite[10];
115 uint32_t cb_fp16_zb_no_readwrite[10];
116
117 /* Whether a two-sided stencil is enabled. */
118 boolean two_sided;
119 /* Whether a fallback should be used for a two-sided stencil ref value. */
120 boolean two_sided_stencil_ref;
121 };
122
123 struct r300_hyperz_state {
124 int flush;
125 /* This is actually a command buffer with named dwords. */
126 uint32_t cb_flush_begin;
127 uint32_t zb_zcache_ctlstat; /* R300_ZB_CACHE_CNTL */
128 uint32_t cb_begin;
129 uint32_t zb_bw_cntl; /* R300_ZB_BW_CNTL */
130 uint32_t cb_reg1;
131 uint32_t zb_depthclearvalue; /* R300_ZB_DEPTHCLEARVALUE */
132 uint32_t cb_reg2;
133 uint32_t sc_hyperz; /* R300_SC_HYPERZ */
134 uint32_t cb_reg3;
135 uint32_t gb_z_peq_config; /* R300_GB_Z_PEQ_CONFIG: 0x4028 */
136 };
137
138 struct r300_gpu_flush {
139 uint32_t cb_flush_clean[6];
140 };
141
142 #define RS_STATE_MAIN_SIZE 25
143
144 struct r300_rs_state {
145 /* Original rasterizer state. */
146 struct pipe_rasterizer_state rs;
147 /* Draw-specific rasterizer state. */
148 struct pipe_rasterizer_state rs_draw;
149
150 /* Command buffers. */
151 uint32_t cb_main[RS_STATE_MAIN_SIZE];
152 uint32_t cb_poly_offset_zb16[5];
153 uint32_t cb_poly_offset_zb24[5];
154
155 /* The index to cb_main where the cull_mode register value resides. */
156 unsigned cull_mode_index;
157
158 /* Whether polygon offset is enabled. */
159 boolean polygon_offset_enable;
160
161 /* This is emitted in the draw function. */
162 uint32_t color_control; /* R300_GA_COLOR_CONTROL: 0x4278 */
163 };
164
165 struct r300_rs_block {
166 uint32_t vap_vtx_state_cntl; /* R300_VAP_VTX_STATE_CNTL: 0x2180 */
167 uint32_t vap_vsm_vtx_assm; /* R300_VAP_VSM_VTX_ASSM: 0x2184 */
168 uint32_t vap_out_vtx_fmt[2]; /* R300_VAP_OUTPUT_VTX_FMT_[0-1]: 0x2090 */
169 uint32_t gb_enable;
170
171 uint32_t ip[8]; /* R300_RS_IP_[0-7], R500_RS_IP_[0-7] */
172 uint32_t count; /* R300_RS_COUNT */
173 uint32_t inst_count; /* R300_RS_INST_COUNT */
174 uint32_t inst[8]; /* R300_RS_INST_[0-7] */
175 };
176
177 struct r300_sampler_state {
178 struct pipe_sampler_state state;
179
180 uint32_t filter0; /* R300_TX_FILTER0: 0x4400 */
181 uint32_t filter1; /* R300_TX_FILTER1: 0x4440 */
182
183 /* Min/max LOD must be clamped to [0, last_level], thus
184 * it's dependent on a currently bound texture */
185 unsigned min_lod, max_lod;
186 };
187
188 struct r300_texture_format_state {
189 uint32_t format0; /* R300_TX_FORMAT0: 0x4480 */
190 uint32_t format1; /* R300_TX_FORMAT1: 0x44c0 */
191 uint32_t format2; /* R300_TX_FORMAT2: 0x4500 */
192 uint32_t tile_config; /* R300_TX_OFFSET (subset thereof) */
193 uint32_t us_format0; /* R500_US_FORMAT0_0: 0x4640 (through 15) */
194 };
195
196 struct r300_sampler_view {
197 struct pipe_sampler_view base;
198
199 /* Swizzles in the UTIL_FORMAT_SWIZZLE_* representation,
200 * derived from base. */
201 unsigned char swizzle[4];
202
203 /* Copy of r300_texture::texture_format_state with format-specific bits
204 * added. */
205 struct r300_texture_format_state format;
206
207 /* The texture cache region for this texture. */
208 uint32_t texcache_region;
209 };
210
211 struct r300_texture_sampler_state {
212 struct r300_texture_format_state format;
213 uint32_t filter0; /* R300_TX_FILTER0: 0x4400 */
214 uint32_t filter1; /* R300_TX_FILTER1: 0x4440 */
215 uint32_t border_color; /* R300_TX_BORDER_COLOR: 0x45c0 */
216 };
217
218 struct r300_textures_state {
219 /* Textures. */
220 struct r300_sampler_view *sampler_views[16];
221 int sampler_view_count;
222 /* Sampler states. */
223 struct r300_sampler_state *sampler_states[16];
224 int sampler_state_count;
225
226 /* This is the merge of the texture and sampler states. */
227 unsigned count;
228 uint32_t tx_enable; /* R300_TX_ENABLE: 0x4101 */
229 struct r300_texture_sampler_state regs[16];
230 };
231
232 struct r300_vertex_stream_state {
233 /* R300_VAP_PROG_STREAK_CNTL_[0-7] */
234 uint32_t vap_prog_stream_cntl[8];
235 /* R300_VAP_PROG_STREAK_CNTL_EXT_[0-7] */
236 uint32_t vap_prog_stream_cntl_ext[8];
237
238 unsigned count;
239 };
240
241 struct r300_invariant_state {
242 uint32_t cb[24];
243 };
244
245 struct r300_vap_invariant_state {
246 uint32_t cb[11];
247 };
248
249 struct r300_viewport_state {
250 float xscale; /* R300_VAP_VPORT_XSCALE: 0x2098 */
251 float xoffset; /* R300_VAP_VPORT_XOFFSET: 0x209c */
252 float yscale; /* R300_VAP_VPORT_YSCALE: 0x20a0 */
253 float yoffset; /* R300_VAP_VPORT_YOFFSET: 0x20a4 */
254 float zscale; /* R300_VAP_VPORT_ZSCALE: 0x20a8 */
255 float zoffset; /* R300_VAP_VPORT_ZOFFSET: 0x20ac */
256 uint32_t vte_control; /* R300_VAP_VTE_CNTL: 0x20b0 */
257 };
258
259 struct r300_ztop_state {
260 uint32_t z_buffer_top; /* R300_ZB_ZTOP: 0x4f14 */
261 };
262
263 /* The next several objects are not pure Radeon state; they inherit from
264 * various Gallium classes. */
265
266 struct r300_constant_buffer {
267 /* Buffer of constants */
268 uint32_t *ptr;
269 /* Remapping table. */
270 unsigned *remap_table;
271 /* const buffer base */
272 uint32_t buffer_base;
273 };
274
275 /* Query object.
276 *
277 * This is not a subclass of pipe_query because pipe_query is never
278 * actually fully defined. So, rather than have it as a member, and do
279 * subclass-style casting, we treat pipe_query as an opaque, and just
280 * trust that our state tracker does not ever mess up query objects.
281 */
282 struct r300_query {
283 /* The kind of query. Currently only OQ is supported. */
284 unsigned type;
285 /* The number of pipes where query results are stored. */
286 unsigned num_pipes;
287 /* How many results have been written, in dwords. It's incremented
288 * after end_query and flush. */
289 unsigned num_results;
290 /* if begin has been emitted */
291 boolean begin_emitted;
292
293 /* The buffer where query results are stored. */
294 struct pb_buffer *buf;
295 struct radeon_winsys_cs_handle *cs_buf;
296 /* The size of the buffer. */
297 unsigned buffer_size;
298
299 /* Linked list members. */
300 struct r300_query* prev;
301 struct r300_query* next;
302 };
303
304 struct r300_surface {
305 struct pipe_surface base;
306
307 /* Winsys buffer backing the texture. */
308 struct pb_buffer *buf;
309 struct radeon_winsys_cs_handle *cs_buf;
310
311 uint32_t offset; /* COLOROFFSET or DEPTHOFFSET. */
312 uint32_t pitch; /* COLORPITCH or DEPTHPITCH. */
313 uint32_t pitch_zmask; /* ZMASK_PITCH */
314 uint32_t pitch_hiz; /* HIZ_PITCH */
315 uint32_t format; /* US_OUT_FMT or ZB_FORMAT. */
316
317 /* Parameters dedicated to the CBZB clear. */
318 uint32_t cbzb_width; /* Aligned width. */
319 uint32_t cbzb_height; /* Half of the height. */
320 uint32_t cbzb_midpoint_offset; /* DEPTHOFFSET. */
321 uint32_t cbzb_pitch; /* DEPTHPITCH. */
322 uint32_t cbzb_format; /* ZB_FORMAT. */
323
324 /* Whether the CBZB clear is allowed on the surface. */
325 boolean cbzb_allowed;
326 };
327
328 struct r300_texture_desc {
329 /* Width, height, and depth.
330 * Most of the time, these are equal to pipe_texture::width0, height0,
331 * and depth0. However, NPOT 3D textures must have dimensions aligned
332 * to POT, and this is the only case when these variables differ from
333 * pipe_texture. */
334 unsigned width0, height0, depth0;
335
336 /* Buffer tiling.
337 * Macrotiling is specified per-level because small mipmaps cannot
338 * be macrotiled. */
339 enum radeon_bo_layout microtile;
340 enum radeon_bo_layout macrotile[R300_MAX_TEXTURE_LEVELS];
341
342 /* Offsets into the buffer. */
343 unsigned offset_in_bytes[R300_MAX_TEXTURE_LEVELS];
344
345 /* Strides for each mip-level. */
346 unsigned stride_in_pixels[R300_MAX_TEXTURE_LEVELS];
347 unsigned stride_in_bytes[R300_MAX_TEXTURE_LEVELS];
348
349 /* Size of one zslice or face or 2D image based on the texture target. */
350 unsigned layer_size_in_bytes[R300_MAX_TEXTURE_LEVELS];
351
352 /* Total size of this texture, in bytes,
353 * derived from the texture properties. */
354 unsigned size_in_bytes;
355
356 /**
357 * If non-zero, override the natural texture layout with
358 * a custom stride (in bytes).
359 *
360 * \note Mipmapping fails for textures with a non-natural layout!
361 *
362 * \sa r300_texture_get_stride
363 */
364 unsigned stride_in_bytes_override;
365
366 /* Whether this texture has non-power-of-two dimensions.
367 * It can be either a regular texture or a rectangle one. */
368 boolean is_npot;
369
370 /* This flag says that hardware must use the stride for addressing
371 * instead of the width. */
372 boolean uses_stride_addressing;
373
374 /* Whether CBZB fast color clear is allowed on the miplevel. */
375 boolean cbzb_allowed[R300_MAX_TEXTURE_LEVELS];
376
377 /* Zbuffer compression info for each miplevel. */
378 boolean zcomp8x8[R300_MAX_TEXTURE_LEVELS];
379 /* If zero, then disable Z compression/HiZ. */
380 unsigned zmask_dwords[R300_MAX_TEXTURE_LEVELS];
381 unsigned hiz_dwords[R300_MAX_TEXTURE_LEVELS];
382 /* Zmask/HiZ strides for each miplevel. */
383 unsigned zmask_stride_in_pixels[R300_MAX_TEXTURE_LEVELS];
384 unsigned hiz_stride_in_pixels[R300_MAX_TEXTURE_LEVELS];
385 };
386
387 struct r300_resource
388 {
389 struct u_vbuf_resource b;
390
391 /* Winsys buffer backing this resource. */
392 struct pb_buffer *buf;
393 struct radeon_winsys_cs_handle *cs_buf;
394
395 /* Constant buffers are in user memory. */
396 uint8_t *constant_buffer;
397
398 /* Texture description (addressing, layout, special features). */
399 struct r300_texture_desc tex;
400
401 /* Registers carrying texture format data. */
402 /* Only format-independent bits should be filled in. */
403 struct r300_texture_format_state tx_format;
404
405 /* This is the level tiling flags were last time set for.
406 * It's used to prevent redundant tiling-flags changes from happening.*/
407 unsigned surface_level;
408 };
409
410 struct r300_vertex_element_state {
411 unsigned count;
412 struct pipe_vertex_element velem[PIPE_MAX_ATTRIBS];
413 unsigned format_size[PIPE_MAX_ATTRIBS];
414
415 struct u_vbuf_elements *vmgr_elements;
416
417 /* The size of the vertex, in dwords. */
418 unsigned vertex_size_dwords;
419
420 struct r300_vertex_stream_state vertex_stream;
421 };
422
423 enum r300_hiz_func {
424 HIZ_FUNC_NONE,
425
426 /* The function, when determined, is set in stone
427 * until the next HiZ clear. */
428
429 /* MAX is written to the HiZ buffer.
430 * Used for LESS, LEQUAL. */
431 HIZ_FUNC_MAX,
432
433 /* MIN is written to the HiZ buffer.
434 * Used for GREATER, GEQUAL. */
435 HIZ_FUNC_MIN,
436 };
437
438 /* For deferred fragment shader state validation. */
439 enum r300_fs_validity_status {
440 FRAGMENT_SHADER_VALID, /* No need to change/validate the FS. */
441 FRAGMENT_SHADER_MAYBE_DIRTY,/* Validate the FS if external state was changed. */
442 FRAGMENT_SHADER_DIRTY /* Always validate the FS (if the FS was changed) */
443 };
444
445 struct r300_context {
446 /* Parent class */
447 struct pipe_context context;
448
449 /* The interface to the windowing system, etc. */
450 struct radeon_winsys *rws;
451 /* The command stream. */
452 struct radeon_winsys_cs *cs;
453 /* Screen. */
454 struct r300_screen *screen;
455
456 /* Draw module. Used mostly for SW TCL. */
457 struct draw_context* draw;
458 /* Vertex buffer for SW TCL. */
459 struct pipe_resource* vbo;
460 /* Offset and size into the SW TCL VBO. */
461 size_t draw_vbo_offset;
462 size_t draw_vbo_size;
463 /* Whether the VBO must not be flushed. */
464 boolean draw_vbo_locked;
465 boolean draw_first_emitted;
466
467 /* Accelerated blit support. */
468 struct blitter_context* blitter;
469 /* Stencil two-sided reference value fallback. */
470 struct r300_stencilref_context *stencilref_fallback;
471
472 /* The KIL opcode needs the first texture unit to be enabled
473 * on r3xx-r4xx. In order to calm down the CS checker, we bind this
474 * dummy texture there. */
475 struct r300_sampler_view *texkill_sampler;
476
477 /* When no vertex buffer is set, this one is used instead to prevent
478 * hardlocks. */
479 struct pipe_resource *dummy_vb;
480
481 /* The currently active query. */
482 struct r300_query *query_current;
483 /* The saved query for blitter operations. */
484 struct r300_query *blitter_saved_query;
485 /* Query list. */
486 struct r300_query query_list;
487
488 /* Various CSO state objects. */
489
490 /* Each atom is emitted in the order it appears here, which can affect
491 * performance and stability if not handled with care. */
492 /* GPU flush. */
493 struct r300_atom gpu_flush;
494 /* Anti-aliasing (MSAA) state. */
495 struct r300_atom aa_state;
496 /* Framebuffer state. */
497 struct r300_atom fb_state;
498 /* HyperZ state (various SC/ZB bits). */
499 struct r300_atom hyperz_state;
500 /* ZTOP state. */
501 struct r300_atom ztop_state;
502 /* Depth, stencil, and alpha state. */
503 struct r300_atom dsa_state;
504 /* Blend state. */
505 struct r300_atom blend_state;
506 /* Blend color state. */
507 struct r300_atom blend_color_state;
508 /* Scissor state. */
509 struct r300_atom scissor_state;
510 /* Invariant state. This must be emitted to get the engine started. */
511 struct r300_atom invariant_state;
512 /* Viewport state. */
513 struct r300_atom viewport_state;
514 /* PVS flush. */
515 struct r300_atom pvs_flush;
516 /* VAP invariant state. */
517 struct r300_atom vap_invariant_state;
518 /* Vertex stream formatting state. */
519 struct r300_atom vertex_stream_state;
520 /* Vertex shader. */
521 struct r300_atom vs_state;
522 /* User clip planes. */
523 struct r300_atom clip_state;
524 /* RS block state + VAP (vertex shader) output mapping state. */
525 struct r300_atom rs_block_state;
526 /* Rasterizer state. */
527 struct r300_atom rs_state;
528 /* Framebuffer state (pipelined regs). */
529 struct r300_atom fb_state_pipelined;
530 /* Fragment shader. */
531 struct r300_atom fs;
532 /* Fragment shader RC_CONSTANT_STATE variables. */
533 struct r300_atom fs_rc_constant_state;
534 /* Fragment shader constant buffer. */
535 struct r300_atom fs_constants;
536 /* Vertex shader constant buffer. */
537 struct r300_atom vs_constants;
538 /* Texture cache invalidate. */
539 struct r300_atom texture_cache_inval;
540 /* Textures state. */
541 struct r300_atom textures_state;
542 /* HiZ clear */
543 struct r300_atom hiz_clear;
544 /* zmask clear */
545 struct r300_atom zmask_clear;
546 /* Occlusion query. */
547 struct r300_atom query_start;
548
549 /* The pointers to the first and the last atom. */
550 struct r300_atom *first_dirty, *last_dirty;
551
552 /* Vertex elements for Gallium. */
553 struct r300_vertex_element_state *velems;
554
555 struct pipe_index_buffer index_buffer;
556
557 /* Vertex info for Draw. */
558 struct vertex_info vertex_info;
559
560 struct pipe_stencil_ref stencil_ref;
561 struct pipe_viewport_state viewport;
562
563 /* Stream locations for SWTCL. */
564 int stream_loc_notcl[16];
565
566 /* Flag indicating whether or not the HW is dirty. */
567 uint32_t dirty_hw;
568 /* Whether polygon offset is enabled. */
569 boolean polygon_offset_enabled;
570 /* Z buffer bit depth. */
571 uint32_t zbuffer_bpp;
572 /* Whether rendering is conditional and should be skipped. */
573 boolean skip_rendering;
574 /* The flag above saved by blitter. */
575 unsigned char blitter_saved_skip_rendering;
576 /* Point sprites texcoord index, 1 bit per texcoord */
577 int sprite_coord_enable;
578 /* Whether two-sided color selection is enabled (AKA light_twoside). */
579 boolean two_sided_color;
580 /* Whether fragment color clamping is enabled. */
581 boolean frag_clamp;
582 /* Whether fast color clear is enabled. */
583 boolean cbzb_clear;
584 /* Whether fragment shader needs to be validated. */
585 enum r300_fs_validity_status fs_status;
586 /* Framebuffer multi-write. */
587 boolean fb_multiwrite;
588
589 void *dsa_decompress_zmask;
590
591 struct u_vbuf_mgr *vbuf_mgr;
592
593 struct util_slab_mempool pool_transfers;
594
595 /* Stat counter. */
596 uint64_t flush_counter;
597
598 /* const tracking for VS */
599 int vs_const_base;
600
601 /* Vertex array state info */
602 boolean vertex_arrays_dirty;
603 boolean vertex_arrays_indexed;
604 int vertex_arrays_offset;
605 int vertex_arrays_instance_id;
606 boolean instancing_enabled;
607
608 /* Hyper-Z stats. */
609 boolean hyperz_enabled; /* Whether it owns Hyper-Z access. */
610 int64_t hyperz_time_of_last_flush; /* Time of the last flush with Z clear. */
611 unsigned num_z_clears; /* Since the last flush. */
612
613 /* ZMask state. */
614 boolean zmask_in_use; /* Whether ZMASK is enabled. */
615 boolean zmask_decompress; /* Whether ZMASK is being decompressed. */
616 struct pipe_surface *locked_zbuffer; /* Unbound zbuffer which still has data in ZMASK. */
617
618 /* HiZ state. */
619 boolean hiz_in_use; /* Whether HIZ is enabled. */
620 enum r300_hiz_func hiz_func; /* HiZ function. Can be either MIN or MAX. */
621 uint32_t hiz_clear_value; /* HiZ clear value. */
622 };
623
624 #define foreach_atom(r300, atom) \
625 for (atom = &r300->gpu_flush; atom != (&r300->query_start)+1; atom++)
626
627 #define foreach_dirty_atom(r300, atom) \
628 for (atom = r300->first_dirty; atom != r300->last_dirty; atom++)
629
630 /* Convenience cast wrappers. */
631 static INLINE struct r300_query* r300_query(struct pipe_query* q)
632 {
633 return (struct r300_query*)q;
634 }
635
636 static INLINE struct r300_surface* r300_surface(struct pipe_surface* surf)
637 {
638 return (struct r300_surface*)surf;
639 }
640
641 static INLINE struct r300_resource* r300_resource(struct pipe_resource* tex)
642 {
643 return (struct r300_resource*)tex;
644 }
645
646 static INLINE struct r300_context* r300_context(struct pipe_context* context)
647 {
648 return (struct r300_context*)context;
649 }
650
651 static INLINE struct r300_fragment_shader *r300_fs(struct r300_context *r300)
652 {
653 return (struct r300_fragment_shader*)r300->fs.state;
654 }
655
656 static INLINE void r300_mark_atom_dirty(struct r300_context *r300,
657 struct r300_atom *atom)
658 {
659 atom->dirty = TRUE;
660
661 if (!r300->first_dirty) {
662 r300->first_dirty = atom;
663 r300->last_dirty = atom+1;
664 } else {
665 if (atom < r300->first_dirty)
666 r300->first_dirty = atom;
667 else if (atom+1 > r300->last_dirty)
668 r300->last_dirty = atom+1;
669 }
670 }
671
672 struct pipe_context* r300_create_context(struct pipe_screen* screen,
673 void *priv);
674
675 /* Context initialization. */
676 struct draw_stage* r300_draw_stage(struct r300_context* r300);
677 void r300_init_blit_functions(struct r300_context *r300);
678 void r300_init_flush_functions(struct r300_context* r300);
679 void r300_init_query_functions(struct r300_context* r300);
680 void r300_init_render_functions(struct r300_context *r300);
681 void r300_init_state_functions(struct r300_context* r300);
682 void r300_init_resource_functions(struct r300_context* r300);
683
684 /* r300_blit.c */
685 void r300_decompress_zmask(struct r300_context *r300);
686 void r300_decompress_zmask_locked_unsafe(struct r300_context *r300);
687 void r300_decompress_zmask_locked(struct r300_context *r300);
688
689 /* r300_flush.c */
690 void r300_flush(struct pipe_context *pipe,
691 unsigned flags,
692 struct pipe_fence_handle **fence);
693
694 /* r300_hyperz.c */
695 void r300_update_hyperz_state(struct r300_context* r300);
696
697 /* r300_query.c */
698 void r300_resume_query(struct r300_context *r300,
699 struct r300_query *query);
700 void r300_stop_query(struct r300_context *r300);
701
702 /* r300_render_translate.c */
703 void r300_translate_index_buffer(struct r300_context *r300,
704 struct pipe_resource **index_buffer,
705 unsigned *index_size, unsigned index_offset,
706 unsigned *start, unsigned count);
707
708 /* r300_render_stencilref.c */
709 void r300_plug_in_stencil_ref_fallback(struct r300_context *r300);
710
711 /* r300_render.c */
712 void r300_draw_flush_vbuf(struct r300_context *r300);
713 void r500_emit_index_bias(struct r300_context *r300, int index_bias);
714
715 /* r300_state.c */
716 enum r300_fb_state_change {
717 R300_CHANGED_FB_STATE = 0,
718 R300_CHANGED_HYPERZ_FLAG,
719 R300_CHANGED_MULTIWRITE
720 };
721
722 void r300_mark_fb_state_dirty(struct r300_context *r300,
723 enum r300_fb_state_change change);
724 void r300_mark_fs_code_dirty(struct r300_context *r300);
725
726 /* r300_state_derived.c */
727 void r300_update_derived_state(struct r300_context* r300);
728
729 /* r300_debug.c */
730 void r500_dump_rs_block(struct r300_rs_block *rs);
731
732
733 static INLINE boolean CTX_DBG_ON(struct r300_context * ctx, unsigned flags)
734 {
735 return SCREEN_DBG_ON(ctx->screen, flags);
736 }
737
738 static INLINE void CTX_DBG(struct r300_context * ctx, unsigned flags,
739 const char * fmt, ...)
740 {
741 if (CTX_DBG_ON(ctx, flags)) {
742 va_list va;
743 va_start(va, fmt);
744 vfprintf(stderr, fmt, va);
745 va_end(va);
746 }
747 }
748
749 #define DBG_ON CTX_DBG_ON
750 #define DBG CTX_DBG
751
752 #endif /* R300_CONTEXT_H */