intel/blorp: Fix rectangle size for level-not-zero resolves
[mesa.git] / src / intel / blorp / blorp_clear.c
1 /*
2 * Copyright © 2013 Intel Corporation
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 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * 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 NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24 #include "util/ralloc.h"
25
26 #include "main/macros.h" /* Needed for MAX3 and MAX2 for format_rgb9e5 */
27 #include "util/format_rgb9e5.h"
28
29 #include "blorp_priv.h"
30 #include "brw_defines.h"
31
32 #include "compiler/nir/nir_builder.h"
33
34 #define FILE_DEBUG_FLAG DEBUG_BLORP
35
36 struct brw_blorp_const_color_prog_key
37 {
38 enum blorp_shader_type shader_type; /* Must be BLORP_SHADER_TYPE_CLEAR */
39 bool use_simd16_replicated_data;
40 bool pad[3];
41 };
42
43 static void
44 blorp_params_get_clear_kernel(struct blorp_context *blorp,
45 struct blorp_params *params,
46 bool use_replicated_data)
47 {
48 const struct brw_blorp_const_color_prog_key blorp_key = {
49 .shader_type = BLORP_SHADER_TYPE_CLEAR,
50 .use_simd16_replicated_data = use_replicated_data,
51 };
52
53 if (blorp->lookup_shader(blorp, &blorp_key, sizeof(blorp_key),
54 &params->wm_prog_kernel, &params->wm_prog_data))
55 return;
56
57 void *mem_ctx = ralloc_context(NULL);
58
59 nir_builder b;
60 nir_builder_init_simple_shader(&b, mem_ctx, MESA_SHADER_FRAGMENT, NULL);
61 b.shader->info->name = ralloc_strdup(b.shader, "BLORP-clear");
62
63 nir_variable *v_color =
64 BLORP_CREATE_NIR_INPUT(b.shader, clear_color, glsl_vec4_type());
65
66 nir_variable *frag_color = nir_variable_create(b.shader, nir_var_shader_out,
67 glsl_vec4_type(),
68 "gl_FragColor");
69 frag_color->data.location = FRAG_RESULT_COLOR;
70
71 nir_copy_var(&b, frag_color, v_color);
72
73 struct brw_wm_prog_key wm_key;
74 brw_blorp_init_wm_prog_key(&wm_key);
75
76 struct brw_wm_prog_data prog_data;
77 unsigned program_size;
78 const unsigned *program =
79 blorp_compile_fs(blorp, mem_ctx, b.shader, &wm_key, use_replicated_data,
80 &prog_data, &program_size);
81
82 blorp->upload_shader(blorp, &blorp_key, sizeof(blorp_key),
83 program, program_size,
84 &prog_data.base, sizeof(prog_data),
85 &params->wm_prog_kernel, &params->wm_prog_data);
86
87 ralloc_free(mem_ctx);
88 }
89
90 struct layer_offset_vs_key {
91 enum blorp_shader_type shader_type;
92 unsigned num_inputs;
93 };
94
95 /* In the case of doing attachment clears, we are using a surface state that
96 * is handed to us so we can't set (and don't even know) the base array layer.
97 * In order to do a layered clear in this scenario, we need some way of adding
98 * the base array layer to the instance id. Unfortunately, our hardware has
99 * no real concept of "base instance", so we have to do it manually in a
100 * vertex shader.
101 */
102 static void
103 blorp_params_get_layer_offset_vs(struct blorp_context *blorp,
104 struct blorp_params *params)
105 {
106 struct layer_offset_vs_key blorp_key = {
107 .shader_type = BLORP_SHADER_TYPE_LAYER_OFFSET_VS,
108 };
109
110 if (params->wm_prog_data)
111 blorp_key.num_inputs = params->wm_prog_data->num_varying_inputs;
112
113 if (blorp->lookup_shader(blorp, &blorp_key, sizeof(blorp_key),
114 &params->vs_prog_kernel, &params->vs_prog_data))
115 return;
116
117 void *mem_ctx = ralloc_context(NULL);
118
119 nir_builder b;
120 nir_builder_init_simple_shader(&b, mem_ctx, MESA_SHADER_VERTEX, NULL);
121 b.shader->info->name = ralloc_strdup(b.shader, "BLORP-layer-offset-vs");
122
123 const struct glsl_type *uvec4_type = glsl_vector_type(GLSL_TYPE_UINT, 4);
124
125 /* First we deal with the header which has instance and base instance */
126 nir_variable *a_header = nir_variable_create(b.shader, nir_var_shader_in,
127 uvec4_type, "header");
128 a_header->data.location = VERT_ATTRIB_GENERIC0;
129
130 nir_variable *v_layer = nir_variable_create(b.shader, nir_var_shader_out,
131 glsl_int_type(), "layer_id");
132 v_layer->data.location = VARYING_SLOT_LAYER;
133
134 /* Compute the layer id */
135 nir_ssa_def *header = nir_load_var(&b, a_header);
136 nir_ssa_def *base_layer = nir_channel(&b, header, 0);
137 nir_ssa_def *instance = nir_channel(&b, header, 1);
138 nir_store_var(&b, v_layer, nir_iadd(&b, instance, base_layer), 0x1);
139
140 /* Then we copy the vertex from the next slot to VARYING_SLOT_POS */
141 nir_variable *a_vertex = nir_variable_create(b.shader, nir_var_shader_in,
142 glsl_vec4_type(), "a_vertex");
143 a_vertex->data.location = VERT_ATTRIB_GENERIC1;
144
145 nir_variable *v_pos = nir_variable_create(b.shader, nir_var_shader_out,
146 glsl_vec4_type(), "v_pos");
147 v_pos->data.location = VARYING_SLOT_POS;
148
149 nir_copy_var(&b, v_pos, a_vertex);
150
151 /* Then we copy everything else */
152 for (unsigned i = 0; i < blorp_key.num_inputs; i++) {
153 nir_variable *a_in = nir_variable_create(b.shader, nir_var_shader_in,
154 uvec4_type, "input");
155 a_in->data.location = VERT_ATTRIB_GENERIC2 + i;
156
157 nir_variable *v_out = nir_variable_create(b.shader, nir_var_shader_out,
158 uvec4_type, "output");
159 v_out->data.location = VARYING_SLOT_VAR0 + i;
160
161 nir_copy_var(&b, v_out, a_in);
162 }
163
164 struct brw_vs_prog_data vs_prog_data;
165 memset(&vs_prog_data, 0, sizeof(vs_prog_data));
166
167 unsigned program_size;
168 const unsigned *program =
169 blorp_compile_vs(blorp, mem_ctx, b.shader, &vs_prog_data, &program_size);
170
171 blorp->upload_shader(blorp, &blorp_key, sizeof(blorp_key),
172 program, program_size,
173 &vs_prog_data.base.base, sizeof(vs_prog_data),
174 &params->vs_prog_kernel, &params->vs_prog_data);
175
176 ralloc_free(mem_ctx);
177 }
178
179 /* The x0, y0, x1, and y1 parameters must already be populated with the render
180 * area of the framebuffer to be cleared.
181 */
182 static void
183 get_fast_clear_rect(const struct isl_device *dev,
184 const struct isl_surf *aux_surf,
185 unsigned *x0, unsigned *y0,
186 unsigned *x1, unsigned *y1)
187 {
188 unsigned int x_align, y_align;
189 unsigned int x_scaledown, y_scaledown;
190
191 /* Only single sampled surfaces need to (and actually can) be resolved. */
192 if (aux_surf->usage == ISL_SURF_USAGE_CCS_BIT) {
193 /* From the Ivy Bridge PRM, Vol2 Part1 11.7 "MCS Buffer for Render
194 * Target(s)", beneath the "Fast Color Clear" bullet (p327):
195 *
196 * Clear pass must have a clear rectangle that must follow
197 * alignment rules in terms of pixels and lines as shown in the
198 * table below. Further, the clear-rectangle height and width
199 * must be multiple of the following dimensions. If the height
200 * and width of the render target being cleared do not meet these
201 * requirements, an MCS buffer can be created such that it
202 * follows the requirement and covers the RT.
203 *
204 * The alignment size in the table that follows is related to the
205 * alignment size that is baked into the CCS surface format but with X
206 * alignment multiplied by 16 and Y alignment multiplied by 32.
207 */
208 x_align = isl_format_get_layout(aux_surf->format)->bw;
209 y_align = isl_format_get_layout(aux_surf->format)->bh;
210
211 x_align *= 16;
212
213 /* SKL+ line alignment requirement for Y-tiled are half those of the prior
214 * generations.
215 */
216 if (dev->info->gen >= 9)
217 y_align *= 16;
218 else
219 y_align *= 32;
220
221 /* From the Ivy Bridge PRM, Vol2 Part1 11.7 "MCS Buffer for Render
222 * Target(s)", beneath the "Fast Color Clear" bullet (p327):
223 *
224 * In order to optimize the performance MCS buffer (when bound to
225 * 1X RT) clear similarly to MCS buffer clear for MSRT case,
226 * clear rect is required to be scaled by the following factors
227 * in the horizontal and vertical directions:
228 *
229 * The X and Y scale down factors in the table that follows are each
230 * equal to half the alignment value computed above.
231 */
232 x_scaledown = x_align / 2;
233 y_scaledown = y_align / 2;
234
235 /* From BSpec: 3D-Media-GPGPU Engine > 3D Pipeline > Pixel > Pixel
236 * Backend > MCS Buffer for Render Target(s) [DevIVB+] > Table "Color
237 * Clear of Non-MultiSampled Render Target Restrictions":
238 *
239 * Clear rectangle must be aligned to two times the number of
240 * pixels in the table shown below due to 16x16 hashing across the
241 * slice.
242 */
243 x_align *= 2;
244 y_align *= 2;
245 } else {
246 assert(aux_surf->usage == ISL_SURF_USAGE_MCS_BIT);
247
248 /* From the Ivy Bridge PRM, Vol2 Part1 11.7 "MCS Buffer for Render
249 * Target(s)", beneath the "MSAA Compression" bullet (p326):
250 *
251 * Clear pass for this case requires that scaled down primitive
252 * is sent down with upper left co-ordinate to coincide with
253 * actual rectangle being cleared. For MSAA, clear rectangle’s
254 * height and width need to as show in the following table in
255 * terms of (width,height) of the RT.
256 *
257 * MSAA Width of Clear Rect Height of Clear Rect
258 * 2X Ceil(1/8*width) Ceil(1/2*height)
259 * 4X Ceil(1/8*width) Ceil(1/2*height)
260 * 8X Ceil(1/2*width) Ceil(1/2*height)
261 * 16X width Ceil(1/2*height)
262 *
263 * The text "with upper left co-ordinate to coincide with actual
264 * rectangle being cleared" is a little confusing--it seems to imply
265 * that to clear a rectangle from (x,y) to (x+w,y+h), one needs to
266 * feed the pipeline using the rectangle (x,y) to
267 * (x+Ceil(w/N),y+Ceil(h/2)), where N is either 2 or 8 depending on
268 * the number of samples. Experiments indicate that this is not
269 * quite correct; actually, what the hardware appears to do is to
270 * align whatever rectangle is sent down the pipeline to the nearest
271 * multiple of 2x2 blocks, and then scale it up by a factor of N
272 * horizontally and 2 vertically. So the resulting alignment is 4
273 * vertically and either 4 or 16 horizontally, and the scaledown
274 * factor is 2 vertically and either 2 or 8 horizontally.
275 */
276 switch (aux_surf->format) {
277 case ISL_FORMAT_MCS_2X:
278 case ISL_FORMAT_MCS_4X:
279 x_scaledown = 8;
280 break;
281 case ISL_FORMAT_MCS_8X:
282 x_scaledown = 2;
283 break;
284 case ISL_FORMAT_MCS_16X:
285 x_scaledown = 1;
286 break;
287 default:
288 unreachable("Unexpected MCS format for fast clear");
289 }
290 y_scaledown = 2;
291 x_align = x_scaledown * 2;
292 y_align = y_scaledown * 2;
293 }
294
295 *x0 = ROUND_DOWN_TO(*x0, x_align) / x_scaledown;
296 *y0 = ROUND_DOWN_TO(*y0, y_align) / y_scaledown;
297 *x1 = ALIGN(*x1, x_align) / x_scaledown;
298 *y1 = ALIGN(*y1, y_align) / y_scaledown;
299 }
300
301 void
302 blorp_fast_clear(struct blorp_batch *batch,
303 const struct blorp_surf *surf, enum isl_format format,
304 uint32_t level, uint32_t start_layer, uint32_t num_layers,
305 uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1)
306 {
307 struct blorp_params params;
308 blorp_params_init(&params);
309 params.num_layers = num_layers;
310
311 params.x0 = x0;
312 params.y0 = y0;
313 params.x1 = x1;
314 params.y1 = y1;
315
316 memset(&params.wm_inputs.clear_color, 0xff, 4*sizeof(float));
317 params.fast_clear_op = BLORP_FAST_CLEAR_OP_CLEAR;
318
319 get_fast_clear_rect(batch->blorp->isl_dev, surf->aux_surf,
320 &params.x0, &params.y0, &params.x1, &params.y1);
321
322 blorp_params_get_clear_kernel(batch->blorp, &params, true);
323
324 brw_blorp_surface_info_init(batch->blorp, &params.dst, surf, level,
325 start_layer, format, true);
326 params.num_samples = params.dst.surf.samples;
327
328 batch->blorp->exec(batch, &params);
329 }
330
331
332 void
333 blorp_clear(struct blorp_batch *batch,
334 const struct blorp_surf *surf,
335 enum isl_format format, struct isl_swizzle swizzle,
336 uint32_t level, uint32_t start_layer, uint32_t num_layers,
337 uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1,
338 union isl_color_value clear_color,
339 const bool color_write_disable[4])
340 {
341 struct blorp_params params;
342 blorp_params_init(&params);
343
344 params.x0 = x0;
345 params.y0 = y0;
346 params.x1 = x1;
347 params.y1 = y1;
348
349 if (format == ISL_FORMAT_R9G9B9E5_SHAREDEXP) {
350 clear_color.u32[0] = float3_to_rgb9e5(clear_color.f32);
351 format = ISL_FORMAT_R32_UINT;
352 }
353
354 memcpy(&params.wm_inputs.clear_color, clear_color.f32, sizeof(float) * 4);
355
356 bool use_simd16_replicated_data = true;
357
358 /* From the SNB PRM (Vol4_Part1):
359 *
360 * "Replicated data (Message Type = 111) is only supported when
361 * accessing tiled memory. Using this Message Type to access linear
362 * (untiled) memory is UNDEFINED."
363 */
364 if (surf->surf->tiling == ISL_TILING_LINEAR)
365 use_simd16_replicated_data = false;
366
367 /* Constant color writes ignore everyting in blend and color calculator
368 * state. This is not documented.
369 */
370 if (color_write_disable) {
371 for (unsigned i = 0; i < 4; i++) {
372 params.color_write_disable[i] = color_write_disable[i];
373 if (color_write_disable[i])
374 use_simd16_replicated_data = false;
375 }
376 }
377
378 blorp_params_get_clear_kernel(batch->blorp, &params,
379 use_simd16_replicated_data);
380
381 while (num_layers > 0) {
382 brw_blorp_surface_info_init(batch->blorp, &params.dst, surf, level,
383 start_layer, format, true);
384 params.dst.view.swizzle = swizzle;
385
386 params.num_samples = params.dst.surf.samples;
387
388 /* We may be restricted on the number of layers we can bind at any one
389 * time. In particular, Sandy Bridge has a maximum number of layers of
390 * 512 but a maximum 3D texture size is much larger.
391 */
392 params.num_layers = MIN2(params.dst.view.array_len, num_layers);
393 batch->blorp->exec(batch, &params);
394
395 start_layer += params.num_layers;
396 num_layers -= params.num_layers;
397 }
398 }
399
400 void
401 blorp_clear_depth_stencil(struct blorp_batch *batch,
402 const struct blorp_surf *depth,
403 const struct blorp_surf *stencil,
404 uint32_t level, uint32_t start_layer,
405 uint32_t num_layers,
406 uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1,
407 bool clear_depth, float depth_value,
408 uint8_t stencil_mask, uint8_t stencil_value)
409 {
410 struct blorp_params params;
411 blorp_params_init(&params);
412
413 params.x0 = x0;
414 params.y0 = y0;
415 params.x1 = x1;
416 params.y1 = y1;
417
418 while (num_layers > 0) {
419 params.num_layers = num_layers;
420
421 if (stencil_mask) {
422 brw_blorp_surface_info_init(batch->blorp, &params.stencil, stencil,
423 level, start_layer,
424 ISL_FORMAT_UNSUPPORTED, true);
425 params.stencil_mask = stencil_mask;
426 params.stencil_ref = stencil_value;
427
428 params.dst.surf.samples = params.stencil.surf.samples;
429 params.dst.surf.logical_level0_px =
430 params.stencil.surf.logical_level0_px;
431 params.dst.view = params.depth.view;
432
433 params.num_samples = params.stencil.surf.samples;
434
435 /* We may be restricted on the number of layers we can bind at any
436 * one time. In particular, Sandy Bridge has a maximum number of
437 * layers of 512 but a maximum 3D texture size is much larger.
438 */
439 if (params.stencil.view.array_len < params.num_layers)
440 params.num_layers = params.stencil.view.array_len;
441 }
442
443 if (clear_depth) {
444 brw_blorp_surface_info_init(batch->blorp, &params.depth, depth,
445 level, start_layer,
446 ISL_FORMAT_UNSUPPORTED, true);
447 params.z = depth_value;
448 params.depth_format =
449 isl_format_get_depth_format(depth->surf->format, false);
450
451 params.dst.surf.samples = params.depth.surf.samples;
452 params.dst.surf.logical_level0_px =
453 params.depth.surf.logical_level0_px;
454 params.dst.view = params.depth.view;
455
456 params.num_samples = params.depth.surf.samples;
457
458 /* We may be restricted on the number of layers we can bind at any
459 * one time. In particular, Sandy Bridge has a maximum number of
460 * layers of 512 but a maximum 3D texture size is much larger.
461 */
462 if (params.depth.view.array_len < params.num_layers)
463 params.num_layers = params.depth.view.array_len;
464 }
465
466 batch->blorp->exec(batch, &params);
467
468 start_layer += params.num_layers;
469 num_layers -= params.num_layers;
470 }
471 }
472
473 /** Clear active color/depth/stencili attachments
474 *
475 * This function performs a clear operation on the currently bound
476 * color/depth/stencil attachments. It is assumed that any information passed
477 * in here is valid, consistent, and in-bounds relative to the currently
478 * attached depth/stencil. The binding_table_offset parameter is the 32-bit
479 * offset relative to surface state base address where pre-baked binding table
480 * that we are to use lives. If clear_color is false, binding_table_offset
481 * must point to a binding table with one entry which is a valid null surface
482 * that matches the currently bound depth and stencil.
483 */
484 void
485 blorp_clear_attachments(struct blorp_batch *batch,
486 uint32_t binding_table_offset,
487 enum isl_format depth_format,
488 uint32_t num_samples,
489 uint32_t start_layer, uint32_t num_layers,
490 uint32_t x0, uint32_t y0, uint32_t x1, uint32_t y1,
491 bool clear_color, union isl_color_value color_value,
492 bool clear_depth, float depth_value,
493 uint8_t stencil_mask, uint8_t stencil_value)
494 {
495 struct blorp_params params;
496 blorp_params_init(&params);
497
498 assert(batch->flags & BLORP_BATCH_NO_EMIT_DEPTH_STENCIL);
499
500 params.x0 = x0;
501 params.y0 = y0;
502 params.x1 = x1;
503 params.y1 = y1;
504
505 params.use_pre_baked_binding_table = true;
506 params.pre_baked_binding_table_offset = binding_table_offset;
507
508 params.num_layers = num_layers;
509 params.num_samples = num_samples;
510
511 if (clear_color) {
512 params.dst.enabled = true;
513
514 memcpy(&params.wm_inputs.clear_color, color_value.f32, sizeof(float) * 4);
515
516 /* Unfortunately, without knowing whether or not our destination surface
517 * is tiled or not, we have to assume it may be linear. This means no
518 * SIMD16_REPDATA for us. :-(
519 */
520 blorp_params_get_clear_kernel(batch->blorp, &params, false);
521 }
522
523 if (clear_depth) {
524 params.depth.enabled = true;
525
526 params.z = depth_value;
527 params.depth_format = isl_format_get_depth_format(depth_format, false);
528 }
529
530 if (stencil_mask) {
531 params.stencil.enabled = true;
532
533 params.stencil_mask = stencil_mask;
534 params.stencil_ref = stencil_value;
535 }
536
537 blorp_params_get_layer_offset_vs(batch->blorp, &params);
538 params.vs_inputs.base_layer = start_layer;
539
540 batch->blorp->exec(batch, &params);
541 }
542
543 void
544 blorp_ccs_resolve(struct blorp_batch *batch,
545 struct blorp_surf *surf, uint32_t level, uint32_t layer,
546 enum isl_format format,
547 enum blorp_fast_clear_op resolve_op)
548 {
549 struct blorp_params params;
550 blorp_params_init(&params);
551
552 /* Layered and mipmapped fast clear is only available from Gen8 onwards. */
553 assert(ISL_DEV_GEN(batch->blorp->isl_dev) >= 8 ||
554 (level == 0 && layer == 0));
555
556 brw_blorp_surface_info_init(batch->blorp, &params.dst, surf,
557 level, layer, format, true);
558
559 /* From the Ivy Bridge PRM, Vol2 Part1 11.9 "Render Target Resolve":
560 *
561 * A rectangle primitive must be scaled down by the following factors
562 * with respect to render target being resolved.
563 *
564 * The scaledown factors in the table that follows are related to the block
565 * size of the CCS format. For IVB and HSW, we divide by two, for BDW we
566 * multiply by 8 and 16. On Sky Lake, we multiply by 8.
567 */
568 const struct isl_format_layout *aux_fmtl =
569 isl_format_get_layout(params.dst.aux_surf.format);
570 assert(aux_fmtl->txc == ISL_TXC_CCS);
571
572 unsigned x_scaledown, y_scaledown;
573 if (ISL_DEV_GEN(batch->blorp->isl_dev) >= 9) {
574 x_scaledown = aux_fmtl->bw * 8;
575 y_scaledown = aux_fmtl->bh * 8;
576 } else if (ISL_DEV_GEN(batch->blorp->isl_dev) >= 8) {
577 x_scaledown = aux_fmtl->bw * 8;
578 y_scaledown = aux_fmtl->bh * 16;
579 } else {
580 x_scaledown = aux_fmtl->bw / 2;
581 y_scaledown = aux_fmtl->bh / 2;
582 }
583 params.x0 = params.y0 = 0;
584 params.x1 = minify(params.dst.aux_surf.logical_level0_px.width, level);
585 params.y1 = minify(params.dst.aux_surf.logical_level0_px.height, level);
586 params.x1 = ALIGN(params.x1, x_scaledown) / x_scaledown;
587 params.y1 = ALIGN(params.y1, y_scaledown) / y_scaledown;
588
589 if (batch->blorp->isl_dev->info->gen >= 9) {
590 assert(resolve_op == BLORP_FAST_CLEAR_OP_RESOLVE_FULL ||
591 resolve_op == BLORP_FAST_CLEAR_OP_RESOLVE_PARTIAL);
592 } else {
593 /* Broadwell and earlier do not have a partial resolve */
594 assert(resolve_op == BLORP_FAST_CLEAR_OP_RESOLVE_FULL);
595 }
596 params.fast_clear_op = resolve_op;
597
598 /* Note: there is no need to initialize push constants because it doesn't
599 * matter what data gets dispatched to the render target. However, we must
600 * ensure that the fragment shader delivers the data using the "replicated
601 * color" message.
602 */
603
604 blorp_params_get_clear_kernel(batch->blorp, &params, true);
605
606 batch->blorp->exec(batch, &params);
607 }