0df3f9a0ba34f85ad5def2d3602809cb6e98d57c
[mesa.git] / src / gallium / drivers / r300 / r300_render.c
1 /*
2 * Copyright 2009 Corbin Simpson <MostAwesomeDude@gmail.com>
3 * Copyright 2010 Marek Olšák <maraeo@gmail.com>
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the "Software"),
7 * to deal in the Software without restriction, including without limitation
8 * on the rights to use, copy, modify, merge, publish, distribute, sub
9 * license, and/or sell copies of the Software, and to permit persons to whom
10 * the Software is furnished to do so, subject to the following conditions:
11 *
12 * The above copyright notice and this permission notice (including the next
13 * paragraph) shall be included in all copies or substantial portions of the
14 * Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHOR(S) AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM,
20 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
21 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
22 * USE OR OTHER DEALINGS IN THE SOFTWARE. */
23
24 /* r300_render: Vertex and index buffer primitive emission. Contains both
25 * HW TCL fastpath rendering, and SW TCL Draw-assisted rendering. */
26
27 #include "draw/draw_context.h"
28 #include "draw/draw_vbuf.h"
29
30 #include "util/u_inlines.h"
31
32 #include "util/u_format.h"
33 #include "util/u_memory.h"
34 #include "util/u_upload_mgr.h"
35 #include "util/u_prim.h"
36
37 #include "r300_cs.h"
38 #include "r300_context.h"
39 #include "r300_screen_buffer.h"
40 #include "r300_emit.h"
41 #include "r300_reg.h"
42
43 #include <limits.h>
44
45 #define IMMD_DWORDS 32
46
47 static uint32_t r300_translate_primitive(unsigned prim)
48 {
49 switch (prim) {
50 case PIPE_PRIM_POINTS:
51 return R300_VAP_VF_CNTL__PRIM_POINTS;
52 case PIPE_PRIM_LINES:
53 return R300_VAP_VF_CNTL__PRIM_LINES;
54 case PIPE_PRIM_LINE_LOOP:
55 return R300_VAP_VF_CNTL__PRIM_LINE_LOOP;
56 case PIPE_PRIM_LINE_STRIP:
57 return R300_VAP_VF_CNTL__PRIM_LINE_STRIP;
58 case PIPE_PRIM_TRIANGLES:
59 return R300_VAP_VF_CNTL__PRIM_TRIANGLES;
60 case PIPE_PRIM_TRIANGLE_STRIP:
61 return R300_VAP_VF_CNTL__PRIM_TRIANGLE_STRIP;
62 case PIPE_PRIM_TRIANGLE_FAN:
63 return R300_VAP_VF_CNTL__PRIM_TRIANGLE_FAN;
64 case PIPE_PRIM_QUADS:
65 return R300_VAP_VF_CNTL__PRIM_QUADS;
66 case PIPE_PRIM_QUAD_STRIP:
67 return R300_VAP_VF_CNTL__PRIM_QUAD_STRIP;
68 case PIPE_PRIM_POLYGON:
69 return R300_VAP_VF_CNTL__PRIM_POLYGON;
70 default:
71 return 0;
72 }
73 }
74
75 static uint32_t r300_provoking_vertex_fixes(struct r300_context *r300,
76 unsigned mode)
77 {
78 struct r300_rs_state* rs = (struct r300_rs_state*)r300->rs_state.state;
79 uint32_t color_control = rs->color_control;
80
81 /* By default (see r300_state.c:r300_create_rs_state) color_control is
82 * initialized to provoking the first vertex.
83 *
84 * Triangle fans must be reduced to the second vertex, not the first, in
85 * Gallium flatshade-first mode, as per the GL spec.
86 * (http://www.opengl.org/registry/specs/ARB/provoking_vertex.txt)
87 *
88 * Quads never provoke correctly in flatshade-first mode. The first
89 * vertex is never considered as provoking, so only the second, third,
90 * and fourth vertices can be selected, and both "third" and "last" modes
91 * select the fourth vertex. This is probably due to D3D lacking quads.
92 *
93 * Similarly, polygons reduce to the first, not the last, vertex, when in
94 * "last" mode, and all other modes start from the second vertex.
95 *
96 * ~ C.
97 */
98
99 if (rs->rs.flatshade_first) {
100 switch (mode) {
101 case PIPE_PRIM_TRIANGLE_FAN:
102 color_control |= R300_GA_COLOR_CONTROL_PROVOKING_VERTEX_SECOND;
103 break;
104 case PIPE_PRIM_QUADS:
105 case PIPE_PRIM_QUAD_STRIP:
106 case PIPE_PRIM_POLYGON:
107 color_control |= R300_GA_COLOR_CONTROL_PROVOKING_VERTEX_LAST;
108 break;
109 default:
110 color_control |= R300_GA_COLOR_CONTROL_PROVOKING_VERTEX_FIRST;
111 break;
112 }
113 } else {
114 color_control |= R300_GA_COLOR_CONTROL_PROVOKING_VERTEX_LAST;
115 }
116
117 return color_control;
118 }
119
120 void r500_emit_index_bias(struct r300_context *r300, int index_bias)
121 {
122 CS_LOCALS(r300);
123
124 BEGIN_CS(2);
125 OUT_CS_REG(R500_VAP_INDEX_OFFSET,
126 (index_bias & 0xFFFFFF) | (index_bias < 0 ? 1<<24 : 0));
127 END_CS;
128 }
129
130 /* This function splits the index bias value into two parts:
131 * - buffer_offset: the value that can be safely added to buffer offsets
132 * in r300_emit_vertex_arrays (it must yield a positive offset when added to
133 * a vertex buffer offset)
134 * - index_offset: the value that must be manually subtracted from indices
135 * in an index buffer to achieve negative offsets. */
136 static void r300_split_index_bias(struct r300_context *r300, int index_bias,
137 int *buffer_offset, int *index_offset)
138 {
139 struct pipe_vertex_buffer *vb, *vbufs = r300->vbuf_mgr->vertex_buffer;
140 struct pipe_vertex_element *velem = r300->velems->velem;
141 unsigned i, size;
142 int max_neg_bias;
143
144 if (index_bias < 0) {
145 /* See how large index bias we may subtract. We must be careful
146 * here because negative buffer offsets are not allowed
147 * by the DRM API. */
148 max_neg_bias = INT_MAX;
149 for (i = 0; i < r300->velems->count; i++) {
150 vb = &vbufs[velem[i].vertex_buffer_index];
151 size = (vb->buffer_offset + velem[i].src_offset) / vb->stride;
152 max_neg_bias = MIN2(max_neg_bias, size);
153 }
154
155 /* Now set the minimum allowed value. */
156 *buffer_offset = MAX2(-max_neg_bias, index_bias);
157 } else {
158 /* A positive index bias is OK. */
159 *buffer_offset = index_bias;
160 }
161
162 *index_offset = index_bias - *buffer_offset;
163 }
164
165 enum r300_prepare_flags {
166 PREP_FIRST_DRAW = (1 << 0), /* call emit_dirty_state and friends? */
167 PREP_VALIDATE_VBOS = (1 << 1), /* validate VBOs? */
168 PREP_EMIT_AOS = (1 << 2), /* call emit_vertex_arrays? */
169 PREP_EMIT_AOS_SWTCL = (1 << 3), /* call emit_vertex_arrays_swtcl? */
170 PREP_INDEXED = (1 << 4) /* is this draw_elements? */
171 };
172
173 /**
174 * Check if the requested number of dwords is available in the CS and
175 * if not, flush.
176 * \param r300 The context.
177 * \param flags See r300_prepare_flags.
178 * \param cs_dwords The number of dwords to reserve in CS.
179 * \return TRUE if the CS was flushed
180 */
181 static boolean r300_reserve_cs_dwords(struct r300_context *r300,
182 enum r300_prepare_flags flags,
183 unsigned cs_dwords)
184 {
185 boolean flushed = FALSE;
186 boolean first_draw = flags & PREP_FIRST_DRAW;
187 boolean emit_vertex_arrays = flags & PREP_EMIT_AOS;
188 boolean emit_vertex_arrays_swtcl = flags & PREP_EMIT_AOS_SWTCL;
189
190 /* Add dirty state, index offset, and AOS. */
191 if (first_draw) {
192 cs_dwords += r300_get_num_dirty_dwords(r300);
193
194 if (r300->screen->caps.index_bias_supported)
195 cs_dwords += 2; /* emit_index_offset */
196
197 if (emit_vertex_arrays)
198 cs_dwords += 55; /* emit_vertex_arrays */
199
200 if (emit_vertex_arrays_swtcl)
201 cs_dwords += 7; /* emit_vertex_arrays_swtcl */
202 }
203
204 cs_dwords += r300_get_num_cs_end_dwords(r300);
205
206 /* Reserve requested CS space. */
207 if (cs_dwords > (R300_MAX_CMDBUF_DWORDS - r300->cs->cdw)) {
208 r300->context.flush(&r300->context, 0, NULL);
209 flushed = TRUE;
210 }
211
212 return flushed;
213 }
214
215 /**
216 * Validate buffers and emit dirty state.
217 * \param r300 The context.
218 * \param flags See r300_prepare_flags.
219 * \param index_buffer The index buffer to validate. The parameter may be NULL.
220 * \param buffer_offset The offset passed to emit_vertex_arrays.
221 * \param index_bias The index bias to emit.
222 * \return TRUE if rendering should be skipped
223 */
224 static boolean r300_emit_states(struct r300_context *r300,
225 enum r300_prepare_flags flags,
226 struct pipe_resource *index_buffer,
227 int buffer_offset,
228 int index_bias,
229 boolean user_buffers)
230 {
231 boolean first_draw = flags & PREP_FIRST_DRAW;
232 boolean emit_vertex_arrays = flags & PREP_EMIT_AOS;
233 boolean emit_vertex_arrays_swtcl = flags & PREP_EMIT_AOS_SWTCL;
234 boolean indexed = flags & PREP_INDEXED;
235 boolean validate_vbos = flags & PREP_VALIDATE_VBOS;
236
237 /* Validate buffers and emit dirty state if needed. */
238 if (first_draw) {
239 if (r300->validate_buffers) {
240 if (!r300_emit_buffer_validate(r300, validate_vbos,
241 index_buffer)) {
242 fprintf(stderr, "r300: CS space validation failed. "
243 "(not enough memory?) Skipping rendering.\n");
244 return FALSE;
245 }
246
247 /* Consider the validation done only if everything was validated. */
248 if (validate_vbos) {
249 r300->validate_buffers = FALSE;
250 if (user_buffers)
251 r300->upload_vb_validated = TRUE;
252 if (r300->index_buffer.buffer &&
253 r300_buffer(r300->index_buffer.buffer)->b.user_ptr) {
254 r300->upload_ib_validated = TRUE;
255 }
256 }
257 }
258
259 r300_emit_dirty_state(r300);
260 if (r300->screen->caps.index_bias_supported) {
261 if (r300->screen->caps.has_tcl)
262 r500_emit_index_bias(r300, index_bias);
263 else
264 r500_emit_index_bias(r300, 0);
265 }
266
267 if (emit_vertex_arrays)
268 r300_emit_vertex_arrays(r300, buffer_offset, indexed);
269
270 if (emit_vertex_arrays_swtcl)
271 r300_emit_vertex_arrays_swtcl(r300, indexed);
272 }
273
274 return TRUE;
275 }
276
277 /**
278 * Check if the requested number of dwords is available in the CS and
279 * if not, flush. Then validate buffers and emit dirty state.
280 * \param r300 The context.
281 * \param flags See r300_prepare_flags.
282 * \param index_buffer The index buffer to validate. The parameter may be NULL.
283 * \param cs_dwords The number of dwords to reserve in CS.
284 * \param buffer_offset The offset passed to emit_vertex_arrays.
285 * \param index_bias The index bias to emit.
286 * \return TRUE if rendering should be skipped
287 */
288 static boolean r300_prepare_for_rendering(struct r300_context *r300,
289 enum r300_prepare_flags flags,
290 struct pipe_resource *index_buffer,
291 unsigned cs_dwords,
292 int buffer_offset,
293 int index_bias,
294 boolean user_buffers)
295 {
296 if (r300_reserve_cs_dwords(r300, flags, cs_dwords))
297 flags |= PREP_FIRST_DRAW;
298
299 return r300_emit_states(r300, flags, index_buffer, buffer_offset,
300 index_bias, user_buffers);
301 }
302
303 static boolean immd_is_good_idea(struct r300_context *r300,
304 unsigned count)
305 {
306 struct pipe_vertex_element* velem;
307 struct pipe_resource *buf;
308 boolean checked[PIPE_MAX_ATTRIBS] = {0};
309 unsigned vertex_element_count = r300->velems->count;
310 unsigned i, vbi;
311
312 if (DBG_ON(r300, DBG_NO_IMMD)) {
313 return FALSE;
314 }
315
316 if (r300->draw) {
317 return FALSE;
318 }
319
320 if (count * r300->velems->vertex_size_dwords > IMMD_DWORDS) {
321 return FALSE;
322 }
323
324 /* We shouldn't map buffers referenced by CS, busy buffers,
325 * and ones placed in VRAM. */
326 for (i = 0; i < vertex_element_count; i++) {
327 velem = &r300->velems->velem[i];
328 vbi = velem->vertex_buffer_index;
329
330 if (!checked[vbi]) {
331 buf = r300->vbuf_mgr->real_vertex_buffer[vbi];
332
333 if (!(r300_buffer(buf)->domain & R300_DOMAIN_GTT)) {
334 return FALSE;
335 }
336
337 if (r300_buffer_is_referenced(&r300->context, buf,
338 R300_REF_CS | R300_REF_HW)) {
339 /* It's a very bad idea to map it... */
340 return FALSE;
341 }
342 checked[vbi] = TRUE;
343 }
344 }
345 return TRUE;
346 }
347
348 /*****************************************************************************
349 * The HWTCL draw functions. *
350 ****************************************************************************/
351
352 static void r300_emit_draw_arrays_immediate(struct r300_context *r300,
353 unsigned mode,
354 unsigned start,
355 unsigned count)
356 {
357 struct pipe_vertex_element* velem;
358 struct pipe_vertex_buffer* vbuf;
359 unsigned vertex_element_count = r300->velems->count;
360 unsigned i, v, vbi;
361
362 /* Size of the vertex, in dwords. */
363 unsigned vertex_size = r300->velems->vertex_size_dwords;
364
365 /* The number of dwords for this draw operation. */
366 unsigned dwords = 9 + count * vertex_size;
367
368 /* Size of the vertex element, in dwords. */
369 unsigned size[PIPE_MAX_ATTRIBS];
370
371 /* Stride to the same attrib in the next vertex in the vertex buffer,
372 * in dwords. */
373 unsigned stride[PIPE_MAX_ATTRIBS];
374
375 /* Mapped vertex buffers. */
376 uint32_t* map[PIPE_MAX_ATTRIBS];
377 uint32_t* mapelem[PIPE_MAX_ATTRIBS];
378 struct pipe_transfer* transfer[PIPE_MAX_ATTRIBS] = {0};
379
380 CS_LOCALS(r300);
381
382 if (!r300_prepare_for_rendering(r300, PREP_FIRST_DRAW, NULL, dwords, 0, 0,
383 FALSE))
384 return;
385
386 /* Calculate the vertex size, offsets, strides etc. and map the buffers. */
387 for (i = 0; i < vertex_element_count; i++) {
388 velem = &r300->velems->velem[i];
389 size[i] = r300->velems->format_size[i] / 4;
390 vbi = velem->vertex_buffer_index;
391 vbuf = &r300->vbuf_mgr->vertex_buffer[vbi];
392 stride[i] = vbuf->stride / 4;
393
394 /* Map the buffer. */
395 if (!transfer[vbi]) {
396 map[vbi] = (uint32_t*)pipe_buffer_map(&r300->context,
397 r300->vbuf_mgr->real_vertex_buffer[vbi],
398 PIPE_TRANSFER_READ,
399 &transfer[vbi]);
400 map[vbi] += (vbuf->buffer_offset / 4) + stride[i] * start;
401 }
402 mapelem[i] = map[vbi] + (velem->src_offset / 4);
403 }
404
405 BEGIN_CS(dwords);
406 OUT_CS_REG(R300_GA_COLOR_CONTROL,
407 r300_provoking_vertex_fixes(r300, mode));
408 OUT_CS_REG(R300_VAP_VTX_SIZE, vertex_size);
409 OUT_CS_REG_SEQ(R300_VAP_VF_MAX_VTX_INDX, 2);
410 OUT_CS(count - 1);
411 OUT_CS(0);
412 OUT_CS_PKT3(R300_PACKET3_3D_DRAW_IMMD_2, count * vertex_size);
413 OUT_CS(R300_VAP_VF_CNTL__PRIM_WALK_VERTEX_EMBEDDED | (count << 16) |
414 r300_translate_primitive(mode));
415
416 /* Emit vertices. */
417 for (v = 0; v < count; v++) {
418 for (i = 0; i < vertex_element_count; i++) {
419 OUT_CS_TABLE(&mapelem[i][stride[i] * v], size[i]);
420 }
421 }
422 END_CS;
423
424 /* Unmap buffers. */
425 for (i = 0; i < vertex_element_count; i++) {
426 vbi = r300->velems->velem[i].vertex_buffer_index;
427
428 if (transfer[vbi]) {
429 pipe_buffer_unmap(&r300->context, transfer[vbi]);
430 transfer[vbi] = NULL;
431 }
432 }
433 }
434
435 static void r300_emit_draw_arrays(struct r300_context *r300,
436 unsigned mode,
437 unsigned count)
438 {
439 boolean alt_num_verts = count > 65535;
440 CS_LOCALS(r300);
441
442 if (count >= (1 << 24)) {
443 fprintf(stderr, "r300: Got a huge number of vertices: %i, "
444 "refusing to render.\n", count);
445 return;
446 }
447
448 BEGIN_CS(7 + (alt_num_verts ? 2 : 0));
449 if (alt_num_verts) {
450 OUT_CS_REG(R500_VAP_ALT_NUM_VERTICES, count);
451 }
452 OUT_CS_REG(R300_GA_COLOR_CONTROL,
453 r300_provoking_vertex_fixes(r300, mode));
454 OUT_CS_REG_SEQ(R300_VAP_VF_MAX_VTX_INDX, 2);
455 OUT_CS(count - 1);
456 OUT_CS(0);
457 OUT_CS_PKT3(R300_PACKET3_3D_DRAW_VBUF_2, 0);
458 OUT_CS(R300_VAP_VF_CNTL__PRIM_WALK_VERTEX_LIST | (count << 16) |
459 r300_translate_primitive(mode) |
460 (alt_num_verts ? R500_VAP_VF_CNTL__USE_ALT_NUM_VERTS : 0));
461 END_CS;
462 }
463
464 static void r300_emit_draw_elements(struct r300_context *r300,
465 struct pipe_resource* indexBuffer,
466 unsigned indexSize,
467 unsigned minIndex,
468 unsigned maxIndex,
469 unsigned mode,
470 unsigned start,
471 unsigned count,
472 uint16_t *imm_indices3)
473 {
474 uint32_t count_dwords, offset_dwords;
475 boolean alt_num_verts = count > 65535;
476 CS_LOCALS(r300);
477
478 if (count >= (1 << 24)) {
479 fprintf(stderr, "r300: Got a huge number of vertices: %i, "
480 "refusing to render.\n", count);
481 return;
482 }
483
484 DBG(r300, DBG_DRAW, "r300: Indexbuf of %u indices, min %u max %u\n",
485 count, minIndex, maxIndex);
486
487 BEGIN_CS(5);
488 OUT_CS_REG(R300_GA_COLOR_CONTROL,
489 r300_provoking_vertex_fixes(r300, mode));
490 OUT_CS_REG_SEQ(R300_VAP_VF_MAX_VTX_INDX, 2);
491 OUT_CS(maxIndex);
492 OUT_CS(minIndex);
493 END_CS;
494
495 /* If start is odd, render the first triangle with indices embedded
496 * in the command stream. This will increase start by 3 and make it
497 * even. We can then proceed without a fallback. */
498 if (indexSize == 2 && (start & 1) &&
499 mode == PIPE_PRIM_TRIANGLES) {
500 BEGIN_CS(4);
501 OUT_CS_PKT3(R300_PACKET3_3D_DRAW_INDX_2, 2);
502 OUT_CS(R300_VAP_VF_CNTL__PRIM_WALK_INDICES | (3 << 16) |
503 R300_VAP_VF_CNTL__PRIM_TRIANGLES);
504 OUT_CS(imm_indices3[1] << 16 | imm_indices3[0]);
505 OUT_CS(imm_indices3[2]);
506 END_CS;
507
508 start += 3;
509 count -= 3;
510 if (!count)
511 return;
512 }
513
514 offset_dwords = indexSize * start / sizeof(uint32_t);
515
516 BEGIN_CS(8 + (alt_num_verts ? 2 : 0));
517 if (alt_num_verts) {
518 OUT_CS_REG(R500_VAP_ALT_NUM_VERTICES, count);
519 }
520 OUT_CS_PKT3(R300_PACKET3_3D_DRAW_INDX_2, 0);
521 if (indexSize == 4) {
522 count_dwords = count;
523 OUT_CS(R300_VAP_VF_CNTL__PRIM_WALK_INDICES | (count << 16) |
524 R300_VAP_VF_CNTL__INDEX_SIZE_32bit |
525 r300_translate_primitive(mode) |
526 (alt_num_verts ? R500_VAP_VF_CNTL__USE_ALT_NUM_VERTS : 0));
527 } else {
528 count_dwords = (count + 1) / 2;
529 OUT_CS(R300_VAP_VF_CNTL__PRIM_WALK_INDICES | (count << 16) |
530 r300_translate_primitive(mode) |
531 (alt_num_verts ? R500_VAP_VF_CNTL__USE_ALT_NUM_VERTS : 0));
532 }
533
534 OUT_CS_PKT3(R300_PACKET3_INDX_BUFFER, 2);
535 OUT_CS(R300_INDX_BUFFER_ONE_REG_WR | (R300_VAP_PORT_IDX0 >> 2) |
536 (0 << R300_INDX_BUFFER_SKIP_SHIFT));
537 OUT_CS(offset_dwords << 2);
538 OUT_CS(count_dwords);
539 OUT_CS_RELOC(r300_buffer(indexBuffer));
540 END_CS;
541 }
542
543 /* This is the fast-path drawing & emission for HW TCL. */
544 static void r300_draw_range_elements(struct pipe_context* pipe,
545 int indexBias,
546 unsigned minIndex,
547 unsigned maxIndex,
548 unsigned mode,
549 unsigned start,
550 unsigned count,
551 boolean user_buffers)
552 {
553 struct r300_context* r300 = r300_context(pipe);
554 struct pipe_resource *indexBuffer = r300->index_buffer.buffer;
555 unsigned indexSize = r300->index_buffer.index_size;
556 struct pipe_resource* orgIndexBuffer = indexBuffer;
557 boolean alt_num_verts = r300->screen->caps.is_r500 &&
558 count > 65536 &&
559 r300->rws->get_value(r300->rws, R300_VID_DRM_2_3_0);
560 unsigned short_count;
561 int buffer_offset = 0, index_offset = 0; /* for index bias emulation */
562 uint16_t indices3[3];
563
564 if (indexBias && !r300->screen->caps.index_bias_supported) {
565 r300_split_index_bias(r300, indexBias, &buffer_offset, &index_offset);
566 }
567
568 r300_translate_index_buffer(r300, &indexBuffer, &indexSize, index_offset,
569 &start, count);
570
571 /* Fallback for misaligned ushort indices. */
572 if (indexSize == 2 && (start & 1) &&
573 !r300_buffer(indexBuffer)->b.user_ptr) {
574 struct pipe_transfer *transfer;
575 struct pipe_resource *userbuf;
576
577 uint16_t *ptr = pipe_buffer_map(pipe, indexBuffer,
578 PIPE_TRANSFER_READ, &transfer);
579
580 if (mode == PIPE_PRIM_TRIANGLES) {
581 memcpy(indices3, ptr + start, 6);
582 } else {
583 /* Copy the mapped index buffer directly to the upload buffer.
584 * The start index will be aligned simply from the fact that
585 * every sub-buffer in u_upload_mgr is aligned. */
586 userbuf = pipe->screen->user_buffer_create(pipe->screen,
587 ptr, 0,
588 PIPE_BIND_INDEX_BUFFER);
589 indexBuffer = userbuf;
590 r300_upload_index_buffer(r300, &indexBuffer, indexSize, &start, count);
591 pipe_resource_reference(&userbuf, NULL);
592 }
593 pipe_buffer_unmap(pipe, transfer);
594 } else {
595 if (r300_buffer(indexBuffer)->b.user_ptr)
596 r300_upload_index_buffer(r300, &indexBuffer, indexSize, &start, count);
597 }
598
599 /* 19 dwords for emit_draw_elements. Give up if the function fails. */
600 if (!r300_prepare_for_rendering(r300,
601 PREP_FIRST_DRAW | PREP_VALIDATE_VBOS | PREP_EMIT_AOS |
602 PREP_INDEXED, indexBuffer, 19, buffer_offset, indexBias, user_buffers))
603 goto done;
604
605 if (alt_num_verts || count <= 65535) {
606 r300_emit_draw_elements(r300, indexBuffer, indexSize,
607 minIndex, maxIndex, mode, start, count, indices3);
608 } else {
609 do {
610 short_count = MIN2(count, 65534);
611 r300_emit_draw_elements(r300, indexBuffer, indexSize,
612 minIndex, maxIndex,
613 mode, start, short_count, indices3);
614
615 start += short_count;
616 count -= short_count;
617
618 /* 15 dwords for emit_draw_elements */
619 if (count) {
620 if (!r300_prepare_for_rendering(r300,
621 PREP_VALIDATE_VBOS | PREP_EMIT_AOS | PREP_INDEXED,
622 indexBuffer, 19, buffer_offset, indexBias, user_buffers))
623 goto done;
624 }
625 } while (count);
626 }
627
628 done:
629 if (indexBuffer != orgIndexBuffer) {
630 pipe_resource_reference( &indexBuffer, NULL );
631 }
632 }
633
634 static void r300_draw_arrays(struct pipe_context* pipe, unsigned mode,
635 unsigned start, unsigned count,
636 boolean user_buffers)
637 {
638 struct r300_context* r300 = r300_context(pipe);
639 boolean alt_num_verts = r300->screen->caps.is_r500 &&
640 count > 65536 &&
641 r300->rws->get_value(r300->rws, R300_VID_DRM_2_3_0);
642 unsigned short_count;
643
644 if (immd_is_good_idea(r300, count)) {
645 r300_emit_draw_arrays_immediate(r300, mode, start, count);
646 } else {
647 /* 9 spare dwords for emit_draw_arrays. Give up if the function fails. */
648 if (!r300_prepare_for_rendering(r300,
649 PREP_FIRST_DRAW | PREP_VALIDATE_VBOS | PREP_EMIT_AOS,
650 NULL, 9, start, 0, user_buffers))
651 return;
652
653 if (alt_num_verts || count <= 65535) {
654 r300_emit_draw_arrays(r300, mode, count);
655 } else {
656 do {
657 short_count = MIN2(count, 65535);
658 r300_emit_draw_arrays(r300, mode, short_count);
659
660 start += short_count;
661 count -= short_count;
662
663 /* 9 spare dwords for emit_draw_arrays. Give up if the function fails. */
664 if (count) {
665 if (!r300_prepare_for_rendering(r300,
666 PREP_VALIDATE_VBOS | PREP_EMIT_AOS, NULL, 9,
667 start, 0, user_buffers))
668 return;
669 }
670 } while (count);
671 }
672 }
673 }
674
675 static void r300_draw_vbo(struct pipe_context* pipe,
676 const struct pipe_draw_info *info)
677 {
678 struct r300_context* r300 = r300_context(pipe);
679 unsigned count = info->count;
680 boolean buffers_updated, uploader_flushed;
681 boolean indexed = info->indexed && r300->index_buffer.buffer;
682
683 if (r300->skip_rendering) {
684 return;
685 }
686
687 if (!u_trim_pipe_prim(info->mode, &count)) {
688 return;
689 }
690
691 u_vbuf_mgr_draw_begin(r300->vbuf_mgr, info,
692 &buffers_updated, &uploader_flushed);
693
694 if (buffers_updated) {
695 r300->vertex_arrays_dirty = TRUE;
696
697 if (uploader_flushed || !r300->upload_vb_validated) {
698 r300->upload_vb_validated = FALSE;
699 r300->validate_buffers = TRUE;
700 }
701 } else {
702 r300->upload_vb_validated = FALSE;
703 }
704
705 if (indexed) {
706 /* Compute the start for draw_elements, taking the offset into account. */
707 unsigned start_indexed =
708 info->start +
709 (r300->index_buffer.offset / r300->index_buffer.index_size);
710 int max_index = MIN2(r300->vbuf_mgr->max_index, info->max_index);
711
712 assert(r300->index_buffer.offset % r300->index_buffer.index_size == 0);
713
714 /* Index buffer range checking. */
715 if ((start_indexed + count) * r300->index_buffer.index_size >
716 r300->index_buffer.buffer->width0) {
717 fprintf(stderr, "r300: Invalid index buffer range. Skipping rendering.\n");
718 return;
719 }
720
721 if (max_index >= (1 << 24) - 1) {
722 fprintf(stderr, "r300: Invalid max_index: %i. Skipping rendering...\n", max_index);
723 return;
724 }
725
726 r300_update_derived_state(r300);
727 r300_draw_range_elements(pipe, info->index_bias, info->min_index,
728 max_index, info->mode, start_indexed, count,
729 buffers_updated);
730 } else {
731 r300_update_derived_state(r300);
732 r300_draw_arrays(pipe, info->mode, info->start, count, buffers_updated);
733 }
734
735 u_vbuf_mgr_draw_end(r300->vbuf_mgr);
736 }
737
738 /****************************************************************************
739 * The rest of this file is for SW TCL rendering only. Please be polite and *
740 * keep these functions separated so that they are easier to locate. ~C. *
741 ***************************************************************************/
742
743 /* SW TCL elements, using Draw. */
744 static void r300_swtcl_draw_vbo(struct pipe_context* pipe,
745 const struct pipe_draw_info *info)
746 {
747 struct r300_context* r300 = r300_context(pipe);
748 struct pipe_transfer *vb_transfer[PIPE_MAX_ATTRIBS];
749 struct pipe_transfer *ib_transfer = NULL;
750 unsigned count = info->count;
751 int i;
752 void *indices = NULL;
753 boolean indexed = info->indexed && r300->index_buffer.buffer;
754
755 if (r300->skip_rendering) {
756 return;
757 }
758
759 if (!u_trim_pipe_prim(info->mode, &count)) {
760 return;
761 }
762
763 r300_update_derived_state(r300);
764
765 r300_reserve_cs_dwords(r300,
766 PREP_FIRST_DRAW | PREP_EMIT_AOS_SWTCL |
767 (indexed ? PREP_INDEXED : 0),
768 indexed ? 256 : 6);
769
770 for (i = 0; i < r300->vbuf_mgr->nr_vertex_buffers; i++) {
771 if (r300->vbuf_mgr->vertex_buffer[i].buffer) {
772 void *buf = pipe_buffer_map(pipe,
773 r300->vbuf_mgr->vertex_buffer[i].buffer,
774 PIPE_TRANSFER_READ,
775 &vb_transfer[i]);
776 draw_set_mapped_vertex_buffer(r300->draw, i, buf);
777 }
778 }
779
780 if (indexed) {
781 indices = pipe_buffer_map(pipe, r300->index_buffer.buffer,
782 PIPE_TRANSFER_READ, &ib_transfer);
783 }
784
785 draw_set_mapped_index_buffer(r300->draw, indices);
786
787 r300->draw_vbo_locked = TRUE;
788 r300->draw_first_emitted = FALSE;
789 draw_vbo(r300->draw, info);
790 draw_flush(r300->draw);
791 r300->draw_vbo_locked = FALSE;
792
793 for (i = 0; i < r300->vbuf_mgr->nr_vertex_buffers; i++) {
794 if (r300->vbuf_mgr->vertex_buffer[i].buffer) {
795 pipe_buffer_unmap(pipe, vb_transfer[i]);
796 draw_set_mapped_vertex_buffer(r300->draw, i, NULL);
797 }
798 }
799
800 if (indexed) {
801 pipe_buffer_unmap(pipe, ib_transfer);
802 draw_set_mapped_index_buffer(r300->draw, NULL);
803 }
804 }
805
806 /* Object for rendering using Draw. */
807 struct r300_render {
808 /* Parent class */
809 struct vbuf_render base;
810
811 /* Pipe context */
812 struct r300_context* r300;
813
814 /* Vertex information */
815 size_t vertex_size;
816 unsigned prim;
817 unsigned hwprim;
818
819 /* VBO */
820 size_t vbo_max_used;
821 void * vbo_ptr;
822
823 struct pipe_transfer *vbo_transfer;
824 };
825
826 static INLINE struct r300_render*
827 r300_render(struct vbuf_render* render)
828 {
829 return (struct r300_render*)render;
830 }
831
832 static const struct vertex_info*
833 r300_render_get_vertex_info(struct vbuf_render* render)
834 {
835 struct r300_render* r300render = r300_render(render);
836 struct r300_context* r300 = r300render->r300;
837
838 return &r300->vertex_info;
839 }
840
841 static boolean r300_render_allocate_vertices(struct vbuf_render* render,
842 ushort vertex_size,
843 ushort count)
844 {
845 struct r300_render* r300render = r300_render(render);
846 struct r300_context* r300 = r300render->r300;
847 struct pipe_screen* screen = r300->context.screen;
848 size_t size = (size_t)vertex_size * (size_t)count;
849
850 DBG(r300, DBG_DRAW, "r300: render_allocate_vertices (size: %d)\n", size);
851
852 if (size + r300->draw_vbo_offset > r300->draw_vbo_size)
853 {
854 pipe_resource_reference(&r300->vbo, NULL);
855 r300->vbo = pipe_buffer_create(screen,
856 PIPE_BIND_VERTEX_BUFFER,
857 R300_MAX_DRAW_VBO_SIZE);
858 r300->draw_vbo_offset = 0;
859 r300->draw_vbo_size = R300_MAX_DRAW_VBO_SIZE;
860 r300->validate_buffers = TRUE;
861 }
862
863 r300render->vertex_size = vertex_size;
864
865 return (r300->vbo) ? TRUE : FALSE;
866 }
867
868 static void* r300_render_map_vertices(struct vbuf_render* render)
869 {
870 struct r300_render* r300render = r300_render(render);
871 struct r300_context* r300 = r300render->r300;
872
873 assert(!r300render->vbo_transfer);
874
875 DBG(r300, DBG_DRAW, "r300: render_map_vertices\n");
876
877 r300render->vbo_ptr = pipe_buffer_map(&r300render->r300->context,
878 r300->vbo,
879 PIPE_TRANSFER_WRITE,
880 &r300render->vbo_transfer);
881
882 assert(r300render->vbo_ptr);
883
884 return ((uint8_t*)r300render->vbo_ptr + r300->draw_vbo_offset);
885 }
886
887 static void r300_render_unmap_vertices(struct vbuf_render* render,
888 ushort min,
889 ushort max)
890 {
891 struct r300_render* r300render = r300_render(render);
892 struct pipe_context* context = &r300render->r300->context;
893 struct r300_context* r300 = r300render->r300;
894
895 assert(r300render->vbo_transfer);
896
897 DBG(r300, DBG_DRAW, "r300: render_unmap_vertices\n");
898
899 r300render->vbo_max_used = MAX2(r300render->vbo_max_used,
900 r300render->vertex_size * (max + 1));
901 pipe_buffer_unmap(context, r300render->vbo_transfer);
902
903 r300render->vbo_transfer = NULL;
904 }
905
906 static void r300_render_release_vertices(struct vbuf_render* render)
907 {
908 struct r300_render* r300render = r300_render(render);
909 struct r300_context* r300 = r300render->r300;
910
911 DBG(r300, DBG_DRAW, "r300: render_release_vertices\n");
912
913 r300->draw_vbo_offset += r300render->vbo_max_used;
914 r300render->vbo_max_used = 0;
915 }
916
917 static boolean r300_render_set_primitive(struct vbuf_render* render,
918 unsigned prim)
919 {
920 struct r300_render* r300render = r300_render(render);
921
922 r300render->prim = prim;
923 r300render->hwprim = r300_translate_primitive(prim);
924
925 return TRUE;
926 }
927
928 static void r300_render_draw_arrays(struct vbuf_render* render,
929 unsigned start,
930 unsigned count)
931 {
932 struct r300_render* r300render = r300_render(render);
933 struct r300_context* r300 = r300render->r300;
934 uint8_t* ptr;
935 unsigned i;
936 unsigned dwords = 6;
937
938 CS_LOCALS(r300);
939 (void) i; (void) ptr;
940
941 DBG(r300, DBG_DRAW, "r300: render_draw_arrays (count: %d)\n", count);
942
943 if (r300->draw_first_emitted) {
944 if (!r300_prepare_for_rendering(r300,
945 PREP_FIRST_DRAW | PREP_EMIT_AOS_SWTCL,
946 NULL, 6, 0, 0, FALSE))
947 return;
948 } else {
949 if (!r300_emit_states(r300,
950 PREP_FIRST_DRAW | PREP_EMIT_AOS_SWTCL,
951 NULL, 0, 0, FALSE))
952 return;
953 }
954
955 /* Uncomment to dump all VBOs rendered through this interface.
956 * Slow and noisy!
957 ptr = pipe_buffer_map(&r300render->r300->context,
958 r300render->vbo, PIPE_TRANSFER_READ,
959 &r300render->vbo_transfer);
960
961 for (i = 0; i < count; i++) {
962 printf("r300: Vertex %d\n", i);
963 draw_dump_emitted_vertex(&r300->vertex_info, ptr);
964 ptr += r300->vertex_info.size * 4;
965 printf("\n");
966 }
967
968 pipe_buffer_unmap(&r300render->r300->context, r300render->vbo,
969 r300render->vbo_transfer);
970 */
971
972 BEGIN_CS(dwords);
973 OUT_CS_REG(R300_GA_COLOR_CONTROL,
974 r300_provoking_vertex_fixes(r300, r300render->prim));
975 OUT_CS_REG(R300_VAP_VF_MAX_VTX_INDX, count - 1);
976 OUT_CS_PKT3(R300_PACKET3_3D_DRAW_VBUF_2, 0);
977 OUT_CS(R300_VAP_VF_CNTL__PRIM_WALK_VERTEX_LIST | (count << 16) |
978 r300render->hwprim);
979 END_CS;
980
981 r300->draw_first_emitted = TRUE;
982 }
983
984 static void r300_render_draw_elements(struct vbuf_render* render,
985 const ushort* indices,
986 uint count)
987 {
988 struct r300_render* r300render = r300_render(render);
989 struct r300_context* r300 = r300render->r300;
990 int i;
991 unsigned end_cs_dwords;
992 unsigned max_index = (r300->draw_vbo_size - r300->draw_vbo_offset) /
993 (r300render->r300->vertex_info.size * 4) - 1;
994 unsigned short_count;
995 unsigned free_dwords;
996
997 CS_LOCALS(r300);
998 DBG(r300, DBG_DRAW, "r300: render_draw_elements (count: %d)\n", count);
999
1000 if (r300->draw_first_emitted) {
1001 if (!r300_prepare_for_rendering(r300,
1002 PREP_FIRST_DRAW | PREP_EMIT_AOS_SWTCL | PREP_INDEXED,
1003 NULL, 256, 0, 0, FALSE))
1004 return;
1005 } else {
1006 if (!r300_emit_states(r300,
1007 PREP_FIRST_DRAW | PREP_EMIT_AOS_SWTCL | PREP_INDEXED,
1008 NULL, 0, 0, FALSE))
1009 return;
1010 }
1011
1012 /* Below we manage the CS space manually because there may be more
1013 * indices than it can fit in CS. */
1014
1015 end_cs_dwords = r300_get_num_cs_end_dwords(r300);
1016
1017 while (count) {
1018 free_dwords = R300_MAX_CMDBUF_DWORDS - r300->cs->cdw;
1019
1020 short_count = MIN2(count, (free_dwords - end_cs_dwords - 6) * 2);
1021
1022 BEGIN_CS(6 + (short_count+1)/2);
1023 OUT_CS_REG(R300_GA_COLOR_CONTROL,
1024 r300_provoking_vertex_fixes(r300, r300render->prim));
1025 OUT_CS_REG(R300_VAP_VF_MAX_VTX_INDX, max_index);
1026 OUT_CS_PKT3(R300_PACKET3_3D_DRAW_INDX_2, (short_count+1)/2);
1027 OUT_CS(R300_VAP_VF_CNTL__PRIM_WALK_INDICES | (short_count << 16) |
1028 r300render->hwprim);
1029 for (i = 0; i < short_count-1; i += 2) {
1030 OUT_CS(indices[i+1] << 16 | indices[i]);
1031 }
1032 if (short_count % 2) {
1033 OUT_CS(indices[short_count-1]);
1034 }
1035 END_CS;
1036
1037 /* OK now subtract the emitted indices and see if we need to emit
1038 * another draw packet. */
1039 indices += short_count;
1040 count -= short_count;
1041
1042 if (count) {
1043 if (!r300_prepare_for_rendering(r300,
1044 PREP_EMIT_AOS_SWTCL | PREP_INDEXED,
1045 NULL, 256, 0, 0, FALSE))
1046 return;
1047
1048 end_cs_dwords = r300_get_num_cs_end_dwords(r300);
1049 }
1050 }
1051
1052 r300->draw_first_emitted = TRUE;
1053 }
1054
1055 static void r300_render_destroy(struct vbuf_render* render)
1056 {
1057 FREE(render);
1058 }
1059
1060 static struct vbuf_render* r300_render_create(struct r300_context* r300)
1061 {
1062 struct r300_render* r300render = CALLOC_STRUCT(r300_render);
1063
1064 r300render->r300 = r300;
1065
1066 r300render->base.max_vertex_buffer_bytes = 1024 * 1024;
1067 r300render->base.max_indices = 16 * 1024;
1068
1069 r300render->base.get_vertex_info = r300_render_get_vertex_info;
1070 r300render->base.allocate_vertices = r300_render_allocate_vertices;
1071 r300render->base.map_vertices = r300_render_map_vertices;
1072 r300render->base.unmap_vertices = r300_render_unmap_vertices;
1073 r300render->base.set_primitive = r300_render_set_primitive;
1074 r300render->base.draw_elements = r300_render_draw_elements;
1075 r300render->base.draw_arrays = r300_render_draw_arrays;
1076 r300render->base.release_vertices = r300_render_release_vertices;
1077 r300render->base.destroy = r300_render_destroy;
1078
1079 return &r300render->base;
1080 }
1081
1082 struct draw_stage* r300_draw_stage(struct r300_context* r300)
1083 {
1084 struct vbuf_render* render;
1085 struct draw_stage* stage;
1086
1087 render = r300_render_create(r300);
1088
1089 if (!render) {
1090 return NULL;
1091 }
1092
1093 stage = draw_vbuf_stage(r300->draw, render);
1094
1095 if (!stage) {
1096 render->destroy(render);
1097 return NULL;
1098 }
1099
1100 draw_set_render(r300->draw, render);
1101
1102 return stage;
1103 }
1104
1105 void r300_draw_flush_vbuf(struct r300_context *r300)
1106 {
1107 pipe_resource_reference(&r300->vbo, NULL);
1108 r300->draw_vbo_size = 0;
1109 }
1110
1111 /****************************************************************************
1112 * End of SW TCL functions *
1113 ***************************************************************************/
1114
1115 /* This functions is used to draw a rectangle for the blitter module.
1116 *
1117 * If we rendered a quad, the pixels on the main diagonal
1118 * would be computed and stored twice, which makes the clear/copy codepaths
1119 * somewhat inefficient. Instead we use a rectangular point sprite. */
1120 static void r300_blitter_draw_rectangle(struct blitter_context *blitter,
1121 unsigned x1, unsigned y1,
1122 unsigned x2, unsigned y2,
1123 float depth,
1124 enum blitter_attrib_type type,
1125 const float attrib[4])
1126 {
1127 struct r300_context *r300 = r300_context(util_blitter_get_pipe(blitter));
1128 unsigned last_sprite_coord_enable = r300->sprite_coord_enable;
1129 unsigned width = x2 - x1;
1130 unsigned height = y2 - y1;
1131 unsigned vertex_size =
1132 type == UTIL_BLITTER_ATTRIB_COLOR || !r300->draw ? 8 : 4;
1133 unsigned dwords = 13 + vertex_size +
1134 (type == UTIL_BLITTER_ATTRIB_TEXCOORD ? 7 : 0);
1135 const float zeros[4] = {0, 0, 0, 0};
1136 CS_LOCALS(r300);
1137
1138 r300->context.set_vertex_buffers(&r300->context, 0, NULL);
1139
1140 if (type == UTIL_BLITTER_ATTRIB_TEXCOORD)
1141 r300->sprite_coord_enable = 1;
1142
1143 r300_update_derived_state(r300);
1144
1145 /* Mark some states we don't care about as non-dirty. */
1146 r300->clip_state.dirty = FALSE;
1147 r300->viewport_state.dirty = FALSE;
1148
1149 if (!r300_prepare_for_rendering(r300, PREP_FIRST_DRAW, NULL, dwords, 0, 0,
1150 FALSE))
1151 goto done;
1152
1153 DBG(r300, DBG_DRAW, "r300: draw_rectangle\n");
1154
1155 BEGIN_CS(dwords);
1156 /* Set up GA. */
1157 OUT_CS_REG(R300_GA_POINT_SIZE, (height * 6) | ((width * 6) << 16));
1158
1159 if (type == UTIL_BLITTER_ATTRIB_TEXCOORD) {
1160 /* Set up the GA to generate texcoords. */
1161 OUT_CS_REG(R300_GB_ENABLE, R300_GB_POINT_STUFF_ENABLE |
1162 (R300_GB_TEX_STR << R300_GB_TEX0_SOURCE_SHIFT));
1163 OUT_CS_REG_SEQ(R300_GA_POINT_S0, 4);
1164 OUT_CS_32F(attrib[0]);
1165 OUT_CS_32F(attrib[3]);
1166 OUT_CS_32F(attrib[2]);
1167 OUT_CS_32F(attrib[1]);
1168 }
1169
1170 /* Set up VAP controls. */
1171 OUT_CS_REG(R300_VAP_CLIP_CNTL, R300_CLIP_DISABLE);
1172 OUT_CS_REG(R300_VAP_VTE_CNTL, R300_VTX_XY_FMT | R300_VTX_Z_FMT);
1173 OUT_CS_REG(R300_VAP_VTX_SIZE, vertex_size);
1174 OUT_CS_REG_SEQ(R300_VAP_VF_MAX_VTX_INDX, 2);
1175 OUT_CS(1);
1176 OUT_CS(0);
1177
1178 /* Draw. */
1179 OUT_CS_PKT3(R300_PACKET3_3D_DRAW_IMMD_2, vertex_size);
1180 OUT_CS(R300_VAP_VF_CNTL__PRIM_WALK_VERTEX_EMBEDDED | (1 << 16) |
1181 R300_VAP_VF_CNTL__PRIM_POINTS);
1182
1183 OUT_CS_32F(x1 + width * 0.5f);
1184 OUT_CS_32F(y1 + height * 0.5f);
1185 OUT_CS_32F(depth);
1186 OUT_CS_32F(1);
1187
1188 if (vertex_size == 8) {
1189 if (!attrib)
1190 attrib = zeros;
1191 OUT_CS_TABLE(attrib, 4);
1192 }
1193 END_CS;
1194
1195 done:
1196 /* Restore the state. */
1197 r300_mark_atom_dirty(r300, &r300->clip_state);
1198 r300_mark_atom_dirty(r300, &r300->rs_state);
1199 r300_mark_atom_dirty(r300, &r300->viewport_state);
1200
1201 r300->sprite_coord_enable = last_sprite_coord_enable;
1202 }
1203
1204 static void r300_resource_resolve(struct pipe_context* pipe,
1205 struct pipe_resource* dest,
1206 unsigned dst_layer,
1207 struct pipe_resource* src,
1208 unsigned src_layer)
1209 {
1210 struct r300_context* r300 = r300_context(pipe);
1211 struct pipe_surface* srcsurf, surf_tmpl;
1212 struct r300_aa_state *aa = (struct r300_aa_state*)r300->aa_state.state;
1213 float color[] = {0, 0, 0, 0};
1214
1215 memset(&surf_tmpl, 0, sizeof(surf_tmpl));
1216 surf_tmpl.format = src->format;
1217 surf_tmpl.usage = 0; /* not really a surface hence no bind flags */
1218 surf_tmpl.u.tex.level = 0; /* msaa resources cannot have mipmaps */
1219 surf_tmpl.u.tex.first_layer = src_layer;
1220 surf_tmpl.u.tex.last_layer = src_layer;
1221 srcsurf = pipe->create_surface(pipe, src, &surf_tmpl);
1222 surf_tmpl.format = dest->format;
1223 surf_tmpl.u.tex.first_layer = dst_layer;
1224 surf_tmpl.u.tex.last_layer = dst_layer;
1225
1226 DBG(r300, DBG_DRAW, "r300: Resolving resource...\n");
1227
1228 /* Enable AA resolve. */
1229 aa->dest = r300_surface(pipe->create_surface(pipe, dest, &surf_tmpl));
1230
1231 aa->aaresolve_ctl =
1232 R300_RB3D_AARESOLVE_CTL_AARESOLVE_MODE_RESOLVE |
1233 R300_RB3D_AARESOLVE_CTL_AARESOLVE_ALPHA_AVERAGE;
1234 r300->aa_state.size = 12;
1235 r300_mark_atom_dirty(r300, &r300->aa_state);
1236
1237 /* Resolve the surface. */
1238 r300->context.clear_render_target(pipe,
1239 srcsurf, color, 0, 0, src->width0, src->height0);
1240
1241 /* Disable AA resolve. */
1242 aa->aaresolve_ctl = 0;
1243 r300->aa_state.size = 4;
1244 r300_mark_atom_dirty(r300, &r300->aa_state);
1245
1246 pipe_surface_reference((struct pipe_surface**)&srcsurf, NULL);
1247 pipe_surface_reference((struct pipe_surface**)&aa->dest, NULL);
1248 }
1249
1250 void r300_init_render_functions(struct r300_context *r300)
1251 {
1252 /* Set draw functions based on presence of HW TCL. */
1253 if (r300->screen->caps.has_tcl) {
1254 r300->context.draw_vbo = r300_draw_vbo;
1255 } else {
1256 r300->context.draw_vbo = r300_swtcl_draw_vbo;
1257 }
1258
1259 r300->context.resource_resolve = r300_resource_resolve;
1260 r300->blitter->draw_rectangle = r300_blitter_draw_rectangle;
1261
1262 /* Plug in the two-sided stencil reference value fallback if needed. */
1263 if (!r300->screen->caps.is_r500)
1264 r300_plug_in_stencil_ref_fallback(r300);
1265 }