i965: remove remaining tabs in brw_draw.c
[mesa.git] / src / mesa / drivers / dri / i965 / brw_draw.c
1 /*
2 * Copyright 2003 VMware, Inc.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sublicense, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * The above copyright notice and this permission notice (including the
14 * next paragraph) shall be included in all copies or substantial portions
15 * of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20 * IN NO EVENT SHALL VMWARE AND/OR ITS SUPPLIERS BE LIABLE FOR
21 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24 */
25
26 #include <sys/errno.h>
27
28 #include "main/context.h"
29 #include "main/condrender.h"
30 #include "main/samplerobj.h"
31 #include "main/state.h"
32 #include "main/enums.h"
33 #include "main/macros.h"
34 #include "main/transformfeedback.h"
35 #include "main/framebuffer.h"
36 #include "tnl/tnl.h"
37 #include "vbo/vbo_context.h"
38 #include "swrast/swrast.h"
39 #include "swrast_setup/swrast_setup.h"
40 #include "drivers/common/meta.h"
41 #include "util/bitscan.h"
42
43 #include "brw_blorp.h"
44 #include "brw_draw.h"
45 #include "brw_defines.h"
46 #include "brw_context.h"
47 #include "brw_state.h"
48 #include "brw_vs.h"
49
50 #include "intel_batchbuffer.h"
51 #include "intel_buffers.h"
52 #include "intel_fbo.h"
53 #include "intel_mipmap_tree.h"
54 #include "intel_buffer_objects.h"
55
56 #define FILE_DEBUG_FLAG DEBUG_PRIMS
57
58
59 static const GLenum reduced_prim[GL_POLYGON+1] = {
60 [GL_POINTS] = GL_POINTS,
61 [GL_LINES] = GL_LINES,
62 [GL_LINE_LOOP] = GL_LINES,
63 [GL_LINE_STRIP] = GL_LINES,
64 [GL_TRIANGLES] = GL_TRIANGLES,
65 [GL_TRIANGLE_STRIP] = GL_TRIANGLES,
66 [GL_TRIANGLE_FAN] = GL_TRIANGLES,
67 [GL_QUADS] = GL_TRIANGLES,
68 [GL_QUAD_STRIP] = GL_TRIANGLES,
69 [GL_POLYGON] = GL_TRIANGLES
70 };
71
72 /* When the primitive changes, set a state bit and re-validate. Not
73 * the nicest and would rather deal with this by having all the
74 * programs be immune to the active primitive (ie. cope with all
75 * possibilities). That may not be realistic however.
76 */
77 static void
78 brw_set_prim(struct brw_context *brw, const struct _mesa_prim *prim)
79 {
80 struct gl_context *ctx = &brw->ctx;
81 uint32_t hw_prim = get_hw_prim_for_gl_prim(prim->mode);
82
83 DBG("PRIM: %s\n", _mesa_enum_to_string(prim->mode));
84
85 /* Slight optimization to avoid the GS program when not needed:
86 */
87 if (prim->mode == GL_QUAD_STRIP &&
88 ctx->Light.ShadeModel != GL_FLAT &&
89 ctx->Polygon.FrontMode == GL_FILL &&
90 ctx->Polygon.BackMode == GL_FILL)
91 hw_prim = _3DPRIM_TRISTRIP;
92
93 if (prim->mode == GL_QUADS && prim->count == 4 &&
94 ctx->Light.ShadeModel != GL_FLAT &&
95 ctx->Polygon.FrontMode == GL_FILL &&
96 ctx->Polygon.BackMode == GL_FILL) {
97 hw_prim = _3DPRIM_TRIFAN;
98 }
99
100 if (hw_prim != brw->primitive) {
101 brw->primitive = hw_prim;
102 brw->ctx.NewDriverState |= BRW_NEW_PRIMITIVE;
103
104 if (reduced_prim[prim->mode] != brw->reduced_primitive) {
105 brw->reduced_primitive = reduced_prim[prim->mode];
106 brw->ctx.NewDriverState |= BRW_NEW_REDUCED_PRIMITIVE;
107 }
108 }
109 }
110
111 static void
112 gen6_set_prim(struct brw_context *brw, const struct _mesa_prim *prim)
113 {
114 const struct gl_context *ctx = &brw->ctx;
115 uint32_t hw_prim;
116
117 DBG("PRIM: %s\n", _mesa_enum_to_string(prim->mode));
118
119 if (prim->mode == GL_PATCHES) {
120 hw_prim = _3DPRIM_PATCHLIST(ctx->TessCtrlProgram.patch_vertices);
121 } else {
122 hw_prim = get_hw_prim_for_gl_prim(prim->mode);
123 }
124
125 if (hw_prim != brw->primitive) {
126 brw->primitive = hw_prim;
127 brw->ctx.NewDriverState |= BRW_NEW_PRIMITIVE;
128 if (prim->mode == GL_PATCHES)
129 brw->ctx.NewDriverState |= BRW_NEW_PATCH_PRIMITIVE;
130 }
131 }
132
133
134 /**
135 * The hardware is capable of removing dangling vertices on its own; however,
136 * prior to Gen6, we sometimes convert quads into trifans (and quad strips
137 * into tristrips), since pre-Gen6 hardware requires a GS to render quads.
138 * This function manually trims dangling vertices from a draw call involving
139 * quads so that those dangling vertices won't get drawn when we convert to
140 * trifans/tristrips.
141 */
142 static GLuint
143 trim(GLenum prim, GLuint length)
144 {
145 if (prim == GL_QUAD_STRIP)
146 return length > 3 ? (length - length % 2) : 0;
147 else if (prim == GL_QUADS)
148 return length - length % 4;
149 else
150 return length;
151 }
152
153
154 static void
155 brw_emit_prim(struct brw_context *brw,
156 const struct _mesa_prim *prim,
157 uint32_t hw_prim,
158 struct brw_transform_feedback_object *xfb_obj,
159 unsigned stream)
160 {
161 int verts_per_instance;
162 int vertex_access_type;
163 int indirect_flag;
164
165 DBG("PRIM: %s %d %d\n", _mesa_enum_to_string(prim->mode),
166 prim->start, prim->count);
167
168 int start_vertex_location = prim->start;
169 int base_vertex_location = prim->basevertex;
170
171 if (prim->indexed) {
172 vertex_access_type = brw->gen >= 7 ?
173 GEN7_3DPRIM_VERTEXBUFFER_ACCESS_RANDOM :
174 GEN4_3DPRIM_VERTEXBUFFER_ACCESS_RANDOM;
175 start_vertex_location += brw->ib.start_vertex_offset;
176 base_vertex_location += brw->vb.start_vertex_bias;
177 } else {
178 vertex_access_type = brw->gen >= 7 ?
179 GEN7_3DPRIM_VERTEXBUFFER_ACCESS_SEQUENTIAL :
180 GEN4_3DPRIM_VERTEXBUFFER_ACCESS_SEQUENTIAL;
181 start_vertex_location += brw->vb.start_vertex_bias;
182 }
183
184 /* We only need to trim the primitive count on pre-Gen6. */
185 if (brw->gen < 6)
186 verts_per_instance = trim(prim->mode, prim->count);
187 else
188 verts_per_instance = prim->count;
189
190 /* If nothing to emit, just return. */
191 if (verts_per_instance == 0 && !prim->is_indirect && !xfb_obj)
192 return;
193
194 /* If we're set to always flush, do it before and after the primitive emit.
195 * We want to catch both missed flushes that hurt instruction/state cache
196 * and missed flushes of the render cache as it heads to other parts of
197 * the besides the draw code.
198 */
199 if (brw->always_flush_cache)
200 brw_emit_mi_flush(brw);
201
202 /* If indirect, emit a bunch of loads from the indirect BO. */
203 if (xfb_obj) {
204 indirect_flag = GEN7_3DPRIM_INDIRECT_PARAMETER_ENABLE;
205
206 brw_load_register_mem(brw, GEN7_3DPRIM_VERTEX_COUNT,
207 xfb_obj->prim_count_bo,
208 I915_GEM_DOMAIN_VERTEX, 0,
209 stream * sizeof(uint32_t));
210 BEGIN_BATCH(9);
211 OUT_BATCH(MI_LOAD_REGISTER_IMM | (9 - 2));
212 OUT_BATCH(GEN7_3DPRIM_INSTANCE_COUNT);
213 OUT_BATCH(prim->num_instances);
214 OUT_BATCH(GEN7_3DPRIM_START_VERTEX);
215 OUT_BATCH(0);
216 OUT_BATCH(GEN7_3DPRIM_BASE_VERTEX);
217 OUT_BATCH(0);
218 OUT_BATCH(GEN7_3DPRIM_START_INSTANCE);
219 OUT_BATCH(0);
220 ADVANCE_BATCH();
221 } else if (prim->is_indirect) {
222 struct gl_buffer_object *indirect_buffer = brw->ctx.DrawIndirectBuffer;
223 drm_intel_bo *bo = intel_bufferobj_buffer(brw,
224 intel_buffer_object(indirect_buffer),
225 prim->indirect_offset, 5 * sizeof(GLuint));
226
227 indirect_flag = GEN7_3DPRIM_INDIRECT_PARAMETER_ENABLE;
228
229 brw_load_register_mem(brw, GEN7_3DPRIM_VERTEX_COUNT, bo,
230 I915_GEM_DOMAIN_VERTEX, 0,
231 prim->indirect_offset + 0);
232 brw_load_register_mem(brw, GEN7_3DPRIM_INSTANCE_COUNT, bo,
233 I915_GEM_DOMAIN_VERTEX, 0,
234 prim->indirect_offset + 4);
235
236 brw_load_register_mem(brw, GEN7_3DPRIM_START_VERTEX, bo,
237 I915_GEM_DOMAIN_VERTEX, 0,
238 prim->indirect_offset + 8);
239 if (prim->indexed) {
240 brw_load_register_mem(brw, GEN7_3DPRIM_BASE_VERTEX, bo,
241 I915_GEM_DOMAIN_VERTEX, 0,
242 prim->indirect_offset + 12);
243 brw_load_register_mem(brw, GEN7_3DPRIM_START_INSTANCE, bo,
244 I915_GEM_DOMAIN_VERTEX, 0,
245 prim->indirect_offset + 16);
246 } else {
247 brw_load_register_mem(brw, GEN7_3DPRIM_START_INSTANCE, bo,
248 I915_GEM_DOMAIN_VERTEX, 0,
249 prim->indirect_offset + 12);
250 BEGIN_BATCH(3);
251 OUT_BATCH(MI_LOAD_REGISTER_IMM | (3 - 2));
252 OUT_BATCH(GEN7_3DPRIM_BASE_VERTEX);
253 OUT_BATCH(0);
254 ADVANCE_BATCH();
255 }
256 } else {
257 indirect_flag = 0;
258 }
259
260 BEGIN_BATCH(brw->gen >= 7 ? 7 : 6);
261
262 if (brw->gen >= 7) {
263 const int predicate_enable =
264 (brw->predicate.state == BRW_PREDICATE_STATE_USE_BIT)
265 ? GEN7_3DPRIM_PREDICATE_ENABLE : 0;
266
267 OUT_BATCH(CMD_3D_PRIM << 16 | (7 - 2) | indirect_flag | predicate_enable);
268 OUT_BATCH(hw_prim | vertex_access_type);
269 } else {
270 OUT_BATCH(CMD_3D_PRIM << 16 | (6 - 2) |
271 hw_prim << GEN4_3DPRIM_TOPOLOGY_TYPE_SHIFT |
272 vertex_access_type);
273 }
274 OUT_BATCH(verts_per_instance);
275 OUT_BATCH(start_vertex_location);
276 OUT_BATCH(prim->num_instances);
277 OUT_BATCH(prim->base_instance);
278 OUT_BATCH(base_vertex_location);
279 ADVANCE_BATCH();
280
281 if (brw->always_flush_cache)
282 brw_emit_mi_flush(brw);
283 }
284
285
286 static void
287 brw_merge_inputs(struct brw_context *brw,
288 const struct gl_client_array *arrays[])
289 {
290 const struct gl_context *ctx = &brw->ctx;
291 GLuint i;
292
293 for (i = 0; i < brw->vb.nr_buffers; i++) {
294 drm_intel_bo_unreference(brw->vb.buffers[i].bo);
295 brw->vb.buffers[i].bo = NULL;
296 }
297 brw->vb.nr_buffers = 0;
298
299 for (i = 0; i < VERT_ATTRIB_MAX; i++) {
300 brw->vb.inputs[i].buffer = -1;
301 brw->vb.inputs[i].glarray = arrays[i];
302 }
303
304 if (brw->gen < 8 && !brw->is_haswell) {
305 uint64_t mask = ctx->VertexProgram._Current->Base.nir->info.inputs_read;
306 /* Prior to Haswell, the hardware can't natively support GL_FIXED or
307 * 2_10_10_10_REV vertex formats. Set appropriate workaround flags.
308 */
309 while (mask) {
310 uint8_t wa_flags = 0;
311
312 i = u_bit_scan64(&mask);
313
314 switch (brw->vb.inputs[i].glarray->Type) {
315
316 case GL_FIXED:
317 wa_flags = brw->vb.inputs[i].glarray->Size;
318 break;
319
320 case GL_INT_2_10_10_10_REV:
321 wa_flags |= BRW_ATTRIB_WA_SIGN;
322 /* fallthough */
323
324 case GL_UNSIGNED_INT_2_10_10_10_REV:
325 if (brw->vb.inputs[i].glarray->Format == GL_BGRA)
326 wa_flags |= BRW_ATTRIB_WA_BGRA;
327
328 if (brw->vb.inputs[i].glarray->Normalized)
329 wa_flags |= BRW_ATTRIB_WA_NORMALIZE;
330 else if (!brw->vb.inputs[i].glarray->Integer)
331 wa_flags |= BRW_ATTRIB_WA_SCALE;
332
333 break;
334 }
335
336 if (brw->vb.attrib_wa_flags[i] != wa_flags) {
337 brw->vb.attrib_wa_flags[i] = wa_flags;
338 brw->ctx.NewDriverState |= BRW_NEW_VS_ATTRIB_WORKAROUNDS;
339 }
340 }
341 }
342 }
343
344 /**
345 * \brief Call this after drawing to mark which buffers need resolving
346 *
347 * If the depth buffer was written to and if it has an accompanying HiZ
348 * buffer, then mark that it needs a depth resolve.
349 *
350 * If the color buffer is a multisample window system buffer, then
351 * mark that it needs a downsample.
352 *
353 * Also mark any render targets which will be textured as needing a render
354 * cache flush.
355 */
356 static void
357 brw_postdraw_set_buffers_need_resolve(struct brw_context *brw)
358 {
359 struct gl_context *ctx = &brw->ctx;
360 struct gl_framebuffer *fb = ctx->DrawBuffer;
361
362 struct intel_renderbuffer *front_irb = NULL;
363 struct intel_renderbuffer *back_irb = intel_get_renderbuffer(fb, BUFFER_BACK_LEFT);
364 struct intel_renderbuffer *depth_irb = intel_get_renderbuffer(fb, BUFFER_DEPTH);
365 struct intel_renderbuffer *stencil_irb = intel_get_renderbuffer(fb, BUFFER_STENCIL);
366 struct gl_renderbuffer_attachment *depth_att = &fb->Attachment[BUFFER_DEPTH];
367
368 if (_mesa_is_front_buffer_drawing(fb))
369 front_irb = intel_get_renderbuffer(fb, BUFFER_FRONT_LEFT);
370
371 if (front_irb)
372 front_irb->need_downsample = true;
373 if (back_irb)
374 back_irb->need_downsample = true;
375 if (depth_irb && ctx->Depth.Mask) {
376 intel_renderbuffer_att_set_needs_depth_resolve(depth_att);
377 brw_render_cache_set_add_bo(brw, depth_irb->mt->bo);
378 }
379
380 if (ctx->Extensions.ARB_stencil_texturing &&
381 stencil_irb && ctx->Stencil._WriteEnabled) {
382 brw_render_cache_set_add_bo(brw, stencil_irb->mt->bo);
383 }
384
385 for (unsigned i = 0; i < fb->_NumColorDrawBuffers; i++) {
386 struct intel_renderbuffer *irb =
387 intel_renderbuffer(fb->_ColorDrawBuffers[i]);
388
389 if (irb) {
390 brw_render_cache_set_add_bo(brw, irb->mt->bo);
391
392 if (intel_miptree_is_lossless_compressed(brw, irb->mt)) {
393 irb->mt->fast_clear_state = INTEL_FAST_CLEAR_STATE_UNRESOLVED;
394 }
395 }
396 }
397 }
398
399 static void
400 brw_predraw_set_aux_buffers(struct brw_context *brw)
401 {
402 if (brw->gen < 9)
403 return;
404
405 struct gl_context *ctx = &brw->ctx;
406 struct gl_framebuffer *fb = ctx->DrawBuffer;
407
408 for (unsigned i = 0; i < fb->_NumColorDrawBuffers; i++) {
409 struct intel_renderbuffer *irb =
410 intel_renderbuffer(fb->_ColorDrawBuffers[i]);
411
412 if (!irb) {
413 continue;
414 }
415 }
416 }
417
418 /* May fail if out of video memory for texture or vbo upload, or on
419 * fallback conditions.
420 */
421 static void
422 brw_try_draw_prims(struct gl_context *ctx,
423 const struct gl_client_array *arrays[],
424 const struct _mesa_prim *prims,
425 GLuint nr_prims,
426 const struct _mesa_index_buffer *ib,
427 bool index_bounds_valid,
428 GLuint min_index,
429 GLuint max_index,
430 struct brw_transform_feedback_object *xfb_obj,
431 unsigned stream,
432 struct gl_buffer_object *indirect)
433 {
434 struct brw_context *brw = brw_context(ctx);
435 GLuint i;
436 bool fail_next = false;
437
438 if (ctx->NewState)
439 _mesa_update_state(ctx);
440
441 /* We have to validate the textures *before* checking for fallbacks;
442 * otherwise, the software fallback won't be able to rely on the
443 * texture state, the firstLevel and lastLevel fields won't be
444 * set in the intel texture object (they'll both be 0), and the
445 * software fallback will segfault if it attempts to access any
446 * texture level other than level 0.
447 */
448 brw_validate_textures(brw);
449
450 /* Find the highest sampler unit used by each shader program. A bit-count
451 * won't work since ARB programs use the texture unit number as the sampler
452 * index.
453 */
454 brw->wm.base.sampler_count =
455 util_last_bit(ctx->FragmentProgram._Current->Base.SamplersUsed);
456 brw->gs.base.sampler_count = ctx->GeometryProgram._Current ?
457 util_last_bit(ctx->GeometryProgram._Current->Base.SamplersUsed) : 0;
458 brw->tes.base.sampler_count = ctx->TessEvalProgram._Current ?
459 util_last_bit(ctx->TessEvalProgram._Current->Base.SamplersUsed) : 0;
460 brw->tcs.base.sampler_count = ctx->TessCtrlProgram._Current ?
461 util_last_bit(ctx->TessCtrlProgram._Current->Base.SamplersUsed) : 0;
462 brw->vs.base.sampler_count =
463 util_last_bit(ctx->VertexProgram._Current->Base.SamplersUsed);
464
465 intel_prepare_render(brw);
466 brw_predraw_set_aux_buffers(brw);
467
468 /* This workaround has to happen outside of brw_upload_render_state()
469 * because it may flush the batchbuffer for a blit, affecting the state
470 * flags.
471 */
472 brw_workaround_depthstencil_alignment(brw, 0);
473
474 /* Bind all inputs, derive varying and size information:
475 */
476 brw_merge_inputs(brw, arrays);
477
478 brw->ib.ib = ib;
479 brw->ctx.NewDriverState |= BRW_NEW_INDICES;
480
481 brw->vb.index_bounds_valid = index_bounds_valid;
482 brw->vb.min_index = min_index;
483 brw->vb.max_index = max_index;
484 brw->ctx.NewDriverState |= BRW_NEW_VERTICES;
485
486 for (i = 0; i < nr_prims; i++) {
487 int estimated_max_prim_size;
488 const int sampler_state_size = 16;
489
490 estimated_max_prim_size = 512; /* batchbuffer commands */
491 estimated_max_prim_size += BRW_MAX_TEX_UNIT *
492 (sampler_state_size + sizeof(struct gen5_sampler_default_color));
493 estimated_max_prim_size += 1024; /* gen6 VS push constants */
494 estimated_max_prim_size += 1024; /* gen6 WM push constants */
495 estimated_max_prim_size += 512; /* misc. pad */
496
497 /* Flush the batch if it's approaching full, so that we don't wrap while
498 * we've got validated state that needs to be in the same batch as the
499 * primitives.
500 */
501 intel_batchbuffer_require_space(brw, estimated_max_prim_size, RENDER_RING);
502 intel_batchbuffer_save_state(brw);
503
504 if (brw->num_instances != prims[i].num_instances ||
505 brw->basevertex != prims[i].basevertex ||
506 brw->baseinstance != prims[i].base_instance) {
507 brw->num_instances = prims[i].num_instances;
508 brw->basevertex = prims[i].basevertex;
509 brw->baseinstance = prims[i].base_instance;
510 if (i > 0) { /* For i == 0 we just did this before the loop */
511 brw->ctx.NewDriverState |= BRW_NEW_VERTICES;
512 brw_merge_inputs(brw, arrays);
513 }
514 }
515
516 /* Determine if we need to flag BRW_NEW_VERTICES for updating the
517 * gl_BaseVertexARB or gl_BaseInstanceARB values. For indirect draw, we
518 * always flag if the shader uses one of the values. For direct draws,
519 * we only flag if the values change.
520 */
521 const int new_basevertex =
522 prims[i].indexed ? prims[i].basevertex : prims[i].start;
523 const int new_baseinstance = prims[i].base_instance;
524 const struct brw_vs_prog_data *vs_prog_data =
525 brw_vs_prog_data(brw->vs.base.prog_data);
526 if (i > 0) {
527 const bool uses_draw_parameters =
528 vs_prog_data->uses_basevertex ||
529 vs_prog_data->uses_baseinstance;
530
531 if ((uses_draw_parameters && prims[i].is_indirect) ||
532 (vs_prog_data->uses_basevertex &&
533 brw->draw.params.gl_basevertex != new_basevertex) ||
534 (vs_prog_data->uses_baseinstance &&
535 brw->draw.params.gl_baseinstance != new_baseinstance))
536 brw->ctx.NewDriverState |= BRW_NEW_VERTICES;
537 }
538
539 brw->draw.params.gl_basevertex = new_basevertex;
540 brw->draw.params.gl_baseinstance = new_baseinstance;
541 drm_intel_bo_unreference(brw->draw.draw_params_bo);
542
543 if (prims[i].is_indirect) {
544 /* Point draw_params_bo at the indirect buffer. */
545 brw->draw.draw_params_bo =
546 intel_buffer_object(ctx->DrawIndirectBuffer)->buffer;
547 drm_intel_bo_reference(brw->draw.draw_params_bo);
548 brw->draw.draw_params_offset =
549 prims[i].indirect_offset + (prims[i].indexed ? 12 : 8);
550 } else {
551 /* Set draw_params_bo to NULL so brw_prepare_vertices knows it
552 * has to upload gl_BaseVertex and such if they're needed.
553 */
554 brw->draw.draw_params_bo = NULL;
555 brw->draw.draw_params_offset = 0;
556 }
557
558 /* gl_DrawID always needs its own vertex buffer since it's not part of
559 * the indirect parameter buffer. If the program uses gl_DrawID we need
560 * to flag BRW_NEW_VERTICES. For the first iteration, we don't have
561 * valid vs_prog_data, but we always flag BRW_NEW_VERTICES before
562 * the loop.
563 */
564 brw->draw.gl_drawid = prims[i].draw_id;
565 drm_intel_bo_unreference(brw->draw.draw_id_bo);
566 brw->draw.draw_id_bo = NULL;
567 if (i > 0 && vs_prog_data->uses_drawid)
568 brw->ctx.NewDriverState |= BRW_NEW_VERTICES;
569
570 if (brw->gen < 6)
571 brw_set_prim(brw, &prims[i]);
572 else
573 gen6_set_prim(brw, &prims[i]);
574
575 retry:
576
577 /* Note that before the loop, brw->ctx.NewDriverState was set to != 0, and
578 * that the state updated in the loop outside of this block is that in
579 * *_set_prim or intel_batchbuffer_flush(), which only impacts
580 * brw->ctx.NewDriverState.
581 */
582 if (brw->ctx.NewDriverState) {
583 brw->no_batch_wrap = true;
584 brw_upload_render_state(brw);
585 }
586
587 brw_emit_prim(brw, &prims[i], brw->primitive, xfb_obj, stream);
588
589 brw->no_batch_wrap = false;
590
591 if (dri_bufmgr_check_aperture_space(&brw->batch.bo, 1)) {
592 if (!fail_next) {
593 intel_batchbuffer_reset_to_saved(brw);
594 intel_batchbuffer_flush(brw);
595 fail_next = true;
596 goto retry;
597 } else {
598 int ret = intel_batchbuffer_flush(brw);
599 WARN_ONCE(ret == -ENOSPC,
600 "i965: Single primitive emit exceeded "
601 "available aperture space\n");
602 }
603 }
604
605 /* Now that we know we haven't run out of aperture space, we can safely
606 * reset the dirty bits.
607 */
608 if (brw->ctx.NewDriverState)
609 brw_render_state_finished(brw);
610 }
611
612 if (brw->always_flush_batch)
613 intel_batchbuffer_flush(brw);
614
615 brw_state_cache_check_size(brw);
616 brw_postdraw_set_buffers_need_resolve(brw);
617
618 return;
619 }
620
621 void
622 brw_draw_prims(struct gl_context *ctx,
623 const struct _mesa_prim *prims,
624 GLuint nr_prims,
625 const struct _mesa_index_buffer *ib,
626 GLboolean index_bounds_valid,
627 GLuint min_index,
628 GLuint max_index,
629 struct gl_transform_feedback_object *gl_xfb_obj,
630 unsigned stream,
631 struct gl_buffer_object *indirect)
632 {
633 struct brw_context *brw = brw_context(ctx);
634 const struct gl_client_array **arrays = ctx->Array._DrawArrays;
635 struct brw_transform_feedback_object *xfb_obj =
636 (struct brw_transform_feedback_object *) gl_xfb_obj;
637
638 if (!brw_check_conditional_render(brw))
639 return;
640
641 /* Handle primitive restart if needed */
642 if (brw_handle_primitive_restart(ctx, prims, nr_prims, ib, indirect)) {
643 /* The draw was handled, so we can exit now */
644 return;
645 }
646
647 /* Do GL_SELECT and GL_FEEDBACK rendering using swrast, even though it
648 * won't support all the extensions we support.
649 */
650 if (ctx->RenderMode != GL_RENDER) {
651 perf_debug("%s render mode not supported in hardware\n",
652 _mesa_enum_to_string(ctx->RenderMode));
653 _swsetup_Wakeup(ctx);
654 _tnl_wakeup(ctx);
655 _tnl_draw_prims(ctx, prims, nr_prims, ib,
656 index_bounds_valid, min_index, max_index, NULL, 0, NULL);
657 return;
658 }
659
660 /* If we're going to have to upload any of the user's vertex arrays, then
661 * get the minimum and maximum of their index buffer so we know what range
662 * to upload.
663 */
664 if (!index_bounds_valid && !vbo_all_varyings_in_vbos(arrays)) {
665 perf_debug("Scanning index buffer to compute index buffer bounds. "
666 "Use glDrawRangeElements() to avoid this.\n");
667 vbo_get_minmax_indices(ctx, prims, ib, &min_index, &max_index, nr_prims);
668 index_bounds_valid = true;
669 }
670
671 /* Try drawing with the hardware, but don't do anything else if we can't
672 * manage it. swrast doesn't support our featureset, so we can't fall back
673 * to it.
674 */
675 brw_try_draw_prims(ctx, arrays, prims, nr_prims, ib, index_bounds_valid,
676 min_index, max_index, xfb_obj, stream, indirect);
677 }
678
679 void
680 brw_draw_init(struct brw_context *brw)
681 {
682 struct gl_context *ctx = &brw->ctx;
683 struct vbo_context *vbo = vbo_context(ctx);
684
685 /* Register our drawing function:
686 */
687 vbo->draw_prims = brw_draw_prims;
688
689 for (int i = 0; i < VERT_ATTRIB_MAX; i++)
690 brw->vb.inputs[i].buffer = -1;
691 brw->vb.nr_buffers = 0;
692 brw->vb.nr_enabled = 0;
693 }
694
695 void
696 brw_draw_destroy(struct brw_context *brw)
697 {
698 unsigned i;
699
700 for (i = 0; i < brw->vb.nr_buffers; i++) {
701 drm_intel_bo_unreference(brw->vb.buffers[i].bo);
702 brw->vb.buffers[i].bo = NULL;
703 }
704 brw->vb.nr_buffers = 0;
705
706 for (i = 0; i < brw->vb.nr_enabled; i++) {
707 brw->vb.enabled[i]->buffer = -1;
708 }
709 brw->vb.nr_enabled = 0;
710
711 drm_intel_bo_unreference(brw->ib.bo);
712 brw->ib.bo = NULL;
713 }