radv: convert all GFX operations to the RADV_META_SAVE_XXX flags
[mesa.git] / src / amd / vulkan / radv_meta_blit.c
1 /*
2 * Copyright © 2015 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 "radv_meta.h"
25 #include "nir/nir_builder.h"
26
27 struct blit_region {
28 VkOffset3D src_offset;
29 VkExtent3D src_extent;
30 VkOffset3D dest_offset;
31 VkExtent3D dest_extent;
32 };
33
34 static nir_shader *
35 build_nir_vertex_shader(void)
36 {
37 const struct glsl_type *vec4 = glsl_vec4_type();
38 nir_builder b;
39
40 nir_builder_init_simple_shader(&b, NULL, MESA_SHADER_VERTEX, NULL);
41 b.shader->info.name = ralloc_strdup(b.shader, "meta_blit_vs");
42
43 nir_variable *pos_out = nir_variable_create(b.shader, nir_var_shader_out,
44 vec4, "gl_Position");
45 pos_out->data.location = VARYING_SLOT_POS;
46
47 nir_variable *tex_pos_out = nir_variable_create(b.shader, nir_var_shader_out,
48 vec4, "v_tex_pos");
49 tex_pos_out->data.location = VARYING_SLOT_VAR0;
50 tex_pos_out->data.interpolation = INTERP_MODE_SMOOTH;
51
52 nir_ssa_def *outvec = radv_meta_gen_rect_vertices(&b);
53
54 nir_store_var(&b, pos_out, outvec, 0xf);
55
56 nir_intrinsic_instr *src_box = nir_intrinsic_instr_create(b.shader, nir_intrinsic_load_push_constant);
57 src_box->src[0] = nir_src_for_ssa(nir_imm_int(&b, 0));
58 nir_intrinsic_set_base(src_box, 0);
59 nir_intrinsic_set_range(src_box, 16);
60 src_box->num_components = 4;
61 nir_ssa_dest_init(&src_box->instr, &src_box->dest, 4, 32, "src_box");
62 nir_builder_instr_insert(&b, &src_box->instr);
63
64 nir_intrinsic_instr *src0_z = nir_intrinsic_instr_create(b.shader, nir_intrinsic_load_push_constant);
65 src0_z->src[0] = nir_src_for_ssa(nir_imm_int(&b, 0));
66 nir_intrinsic_set_base(src0_z, 16);
67 nir_intrinsic_set_range(src0_z, 4);
68 src0_z->num_components = 1;
69 nir_ssa_dest_init(&src0_z->instr, &src0_z->dest, 1, 32, "src0_z");
70 nir_builder_instr_insert(&b, &src0_z->instr);
71
72 nir_intrinsic_instr *vertex_id = nir_intrinsic_instr_create(b.shader, nir_intrinsic_load_vertex_id_zero_base);
73 nir_ssa_dest_init(&vertex_id->instr, &vertex_id->dest, 1, 32, "vertexid");
74 nir_builder_instr_insert(&b, &vertex_id->instr);
75
76 /* vertex 0 - src0_x, src0_y, src0_z */
77 /* vertex 1 - src0_x, src1_y, src0_z*/
78 /* vertex 2 - src1_x, src0_y, src0_z */
79 /* so channel 0 is vertex_id != 2 ? src_x : src_x + w
80 channel 1 is vertex id != 1 ? src_y : src_y + w */
81
82 nir_ssa_def *c0cmp = nir_ine(&b, &vertex_id->dest.ssa,
83 nir_imm_int(&b, 2));
84 nir_ssa_def *c1cmp = nir_ine(&b, &vertex_id->dest.ssa,
85 nir_imm_int(&b, 1));
86
87 nir_ssa_def *comp[4];
88 comp[0] = nir_bcsel(&b, c0cmp,
89 nir_channel(&b, &src_box->dest.ssa, 0),
90 nir_channel(&b, &src_box->dest.ssa, 2));
91
92 comp[1] = nir_bcsel(&b, c1cmp,
93 nir_channel(&b, &src_box->dest.ssa, 1),
94 nir_channel(&b, &src_box->dest.ssa, 3));
95 comp[2] = &src0_z->dest.ssa;
96 comp[3] = nir_imm_float(&b, 1.0);
97 nir_ssa_def *out_tex_vec = nir_vec(&b, comp, 4);
98 nir_store_var(&b, tex_pos_out, out_tex_vec, 0xf);
99 return b.shader;
100 }
101
102 static nir_shader *
103 build_nir_copy_fragment_shader(enum glsl_sampler_dim tex_dim)
104 {
105 char shader_name[64];
106 const struct glsl_type *vec4 = glsl_vec4_type();
107 nir_builder b;
108
109 nir_builder_init_simple_shader(&b, NULL, MESA_SHADER_FRAGMENT, NULL);
110
111 sprintf(shader_name, "meta_blit_fs.%d", tex_dim);
112 b.shader->info.name = ralloc_strdup(b.shader, shader_name);
113
114 nir_variable *tex_pos_in = nir_variable_create(b.shader, nir_var_shader_in,
115 vec4, "v_tex_pos");
116 tex_pos_in->data.location = VARYING_SLOT_VAR0;
117
118 /* Swizzle the array index which comes in as Z coordinate into the right
119 * position.
120 */
121 unsigned swz[] = { 0, (tex_dim == GLSL_SAMPLER_DIM_1D ? 2 : 1), 2 };
122 nir_ssa_def *const tex_pos =
123 nir_swizzle(&b, nir_load_var(&b, tex_pos_in), swz,
124 (tex_dim == GLSL_SAMPLER_DIM_1D ? 2 : 3), false);
125
126 const struct glsl_type *sampler_type =
127 glsl_sampler_type(tex_dim, false, tex_dim != GLSL_SAMPLER_DIM_3D,
128 glsl_get_base_type(vec4));
129 nir_variable *sampler = nir_variable_create(b.shader, nir_var_uniform,
130 sampler_type, "s_tex");
131 sampler->data.descriptor_set = 0;
132 sampler->data.binding = 0;
133
134 nir_tex_instr *tex = nir_tex_instr_create(b.shader, 1);
135 tex->sampler_dim = tex_dim;
136 tex->op = nir_texop_tex;
137 tex->src[0].src_type = nir_tex_src_coord;
138 tex->src[0].src = nir_src_for_ssa(tex_pos);
139 tex->dest_type = nir_type_float; /* TODO */
140 tex->is_array = glsl_sampler_type_is_array(sampler_type);
141 tex->coord_components = tex_pos->num_components;
142 tex->texture = nir_deref_var_create(tex, sampler);
143 tex->sampler = nir_deref_var_create(tex, sampler);
144
145 nir_ssa_dest_init(&tex->instr, &tex->dest, 4, 32, "tex");
146 nir_builder_instr_insert(&b, &tex->instr);
147
148 nir_variable *color_out = nir_variable_create(b.shader, nir_var_shader_out,
149 vec4, "f_color");
150 color_out->data.location = FRAG_RESULT_DATA0;
151 nir_store_var(&b, color_out, &tex->dest.ssa, 0xf);
152
153 return b.shader;
154 }
155
156 static nir_shader *
157 build_nir_copy_fragment_shader_depth(enum glsl_sampler_dim tex_dim)
158 {
159 char shader_name[64];
160 const struct glsl_type *vec4 = glsl_vec4_type();
161 nir_builder b;
162
163 nir_builder_init_simple_shader(&b, NULL, MESA_SHADER_FRAGMENT, NULL);
164
165 sprintf(shader_name, "meta_blit_depth_fs.%d", tex_dim);
166 b.shader->info.name = ralloc_strdup(b.shader, shader_name);
167
168 nir_variable *tex_pos_in = nir_variable_create(b.shader, nir_var_shader_in,
169 vec4, "v_tex_pos");
170 tex_pos_in->data.location = VARYING_SLOT_VAR0;
171
172 /* Swizzle the array index which comes in as Z coordinate into the right
173 * position.
174 */
175 unsigned swz[] = { 0, (tex_dim == GLSL_SAMPLER_DIM_1D ? 2 : 1), 2 };
176 nir_ssa_def *const tex_pos =
177 nir_swizzle(&b, nir_load_var(&b, tex_pos_in), swz,
178 (tex_dim == GLSL_SAMPLER_DIM_1D ? 2 : 3), false);
179
180 const struct glsl_type *sampler_type =
181 glsl_sampler_type(tex_dim, false, tex_dim != GLSL_SAMPLER_DIM_3D,
182 glsl_get_base_type(vec4));
183 nir_variable *sampler = nir_variable_create(b.shader, nir_var_uniform,
184 sampler_type, "s_tex");
185 sampler->data.descriptor_set = 0;
186 sampler->data.binding = 0;
187
188 nir_tex_instr *tex = nir_tex_instr_create(b.shader, 1);
189 tex->sampler_dim = tex_dim;
190 tex->op = nir_texop_tex;
191 tex->src[0].src_type = nir_tex_src_coord;
192 tex->src[0].src = nir_src_for_ssa(tex_pos);
193 tex->dest_type = nir_type_float; /* TODO */
194 tex->is_array = glsl_sampler_type_is_array(sampler_type);
195 tex->coord_components = tex_pos->num_components;
196 tex->texture = nir_deref_var_create(tex, sampler);
197 tex->sampler = nir_deref_var_create(tex, sampler);
198
199 nir_ssa_dest_init(&tex->instr, &tex->dest, 4, 32, "tex");
200 nir_builder_instr_insert(&b, &tex->instr);
201
202 nir_variable *color_out = nir_variable_create(b.shader, nir_var_shader_out,
203 vec4, "f_color");
204 color_out->data.location = FRAG_RESULT_DEPTH;
205 nir_store_var(&b, color_out, &tex->dest.ssa, 0x1);
206
207 return b.shader;
208 }
209
210 static nir_shader *
211 build_nir_copy_fragment_shader_stencil(enum glsl_sampler_dim tex_dim)
212 {
213 char shader_name[64];
214 const struct glsl_type *vec4 = glsl_vec4_type();
215 nir_builder b;
216
217 nir_builder_init_simple_shader(&b, NULL, MESA_SHADER_FRAGMENT, NULL);
218
219 sprintf(shader_name, "meta_blit_stencil_fs.%d", tex_dim);
220 b.shader->info.name = ralloc_strdup(b.shader, shader_name);
221
222 nir_variable *tex_pos_in = nir_variable_create(b.shader, nir_var_shader_in,
223 vec4, "v_tex_pos");
224 tex_pos_in->data.location = VARYING_SLOT_VAR0;
225
226 /* Swizzle the array index which comes in as Z coordinate into the right
227 * position.
228 */
229 unsigned swz[] = { 0, (tex_dim == GLSL_SAMPLER_DIM_1D ? 2 : 1), 2 };
230 nir_ssa_def *const tex_pos =
231 nir_swizzle(&b, nir_load_var(&b, tex_pos_in), swz,
232 (tex_dim == GLSL_SAMPLER_DIM_1D ? 2 : 3), false);
233
234 const struct glsl_type *sampler_type =
235 glsl_sampler_type(tex_dim, false, tex_dim != GLSL_SAMPLER_DIM_3D,
236 glsl_get_base_type(vec4));
237 nir_variable *sampler = nir_variable_create(b.shader, nir_var_uniform,
238 sampler_type, "s_tex");
239 sampler->data.descriptor_set = 0;
240 sampler->data.binding = 0;
241
242 nir_tex_instr *tex = nir_tex_instr_create(b.shader, 1);
243 tex->sampler_dim = tex_dim;
244 tex->op = nir_texop_tex;
245 tex->src[0].src_type = nir_tex_src_coord;
246 tex->src[0].src = nir_src_for_ssa(tex_pos);
247 tex->dest_type = nir_type_float; /* TODO */
248 tex->is_array = glsl_sampler_type_is_array(sampler_type);
249 tex->coord_components = tex_pos->num_components;
250 tex->texture = nir_deref_var_create(tex, sampler);
251 tex->sampler = nir_deref_var_create(tex, sampler);
252
253 nir_ssa_dest_init(&tex->instr, &tex->dest, 4, 32, "tex");
254 nir_builder_instr_insert(&b, &tex->instr);
255
256 nir_variable *color_out = nir_variable_create(b.shader, nir_var_shader_out,
257 vec4, "f_color");
258 color_out->data.location = FRAG_RESULT_STENCIL;
259 nir_store_var(&b, color_out, &tex->dest.ssa, 0x1);
260
261 return b.shader;
262 }
263
264 static void
265 meta_emit_blit(struct radv_cmd_buffer *cmd_buffer,
266 struct radv_image *src_image,
267 struct radv_image_view *src_iview,
268 VkOffset3D src_offset_0,
269 VkOffset3D src_offset_1,
270 struct radv_image *dest_image,
271 struct radv_image_view *dest_iview,
272 VkOffset3D dest_offset_0,
273 VkOffset3D dest_offset_1,
274 VkRect2D dest_box,
275 VkFilter blit_filter)
276 {
277 struct radv_device *device = cmd_buffer->device;
278 uint32_t src_width = radv_minify(src_iview->image->info.width, src_iview->base_mip);
279 uint32_t src_height = radv_minify(src_iview->image->info.height, src_iview->base_mip);
280 uint32_t src_depth = radv_minify(src_iview->image->info.depth, src_iview->base_mip);
281 uint32_t dst_width = radv_minify(dest_iview->image->info.width, dest_iview->base_mip);
282 uint32_t dst_height = radv_minify(dest_iview->image->info.height, dest_iview->base_mip);
283
284 assert(src_image->info.samples == dest_image->info.samples);
285
286 float vertex_push_constants[5] = {
287 (float)src_offset_0.x / (float)src_width,
288 (float)src_offset_0.y / (float)src_height,
289 (float)src_offset_1.x / (float)src_width,
290 (float)src_offset_1.y / (float)src_height,
291 (float)src_offset_0.z / (float)src_depth,
292 };
293
294 radv_CmdPushConstants(radv_cmd_buffer_to_handle(cmd_buffer),
295 device->meta_state.blit.pipeline_layout,
296 VK_SHADER_STAGE_VERTEX_BIT, 0, 20,
297 vertex_push_constants);
298
299 VkSampler sampler;
300 radv_CreateSampler(radv_device_to_handle(device),
301 &(VkSamplerCreateInfo) {
302 .sType = VK_STRUCTURE_TYPE_SAMPLER_CREATE_INFO,
303 .magFilter = blit_filter,
304 .minFilter = blit_filter,
305 .addressModeU = VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE,
306 .addressModeV = VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE,
307 .addressModeW = VK_SAMPLER_ADDRESS_MODE_CLAMP_TO_EDGE,
308 }, &cmd_buffer->pool->alloc, &sampler);
309
310 VkFramebuffer fb;
311 radv_CreateFramebuffer(radv_device_to_handle(device),
312 &(VkFramebufferCreateInfo) {
313 .sType = VK_STRUCTURE_TYPE_FRAMEBUFFER_CREATE_INFO,
314 .attachmentCount = 1,
315 .pAttachments = (VkImageView[]) {
316 radv_image_view_to_handle(dest_iview),
317 },
318 .width = dst_width,
319 .height = dst_height,
320 .layers = 1,
321 }, &cmd_buffer->pool->alloc, &fb);
322 VkPipeline pipeline;
323 switch (src_iview->aspect_mask) {
324 case VK_IMAGE_ASPECT_COLOR_BIT: {
325 unsigned fs_key = radv_format_meta_fs_key(dest_image->vk_format);
326
327 radv_CmdBeginRenderPass(radv_cmd_buffer_to_handle(cmd_buffer),
328 &(VkRenderPassBeginInfo) {
329 .sType = VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO,
330 .renderPass = device->meta_state.blit.render_pass[fs_key],
331 .framebuffer = fb,
332 .renderArea = {
333 .offset = { dest_box.offset.x, dest_box.offset.y },
334 .extent = { dest_box.extent.width, dest_box.extent.height },
335 },
336 .clearValueCount = 0,
337 .pClearValues = NULL,
338 }, VK_SUBPASS_CONTENTS_INLINE);
339 switch (src_image->type) {
340 case VK_IMAGE_TYPE_1D:
341 pipeline = device->meta_state.blit.pipeline_1d_src[fs_key];
342 break;
343 case VK_IMAGE_TYPE_2D:
344 pipeline = device->meta_state.blit.pipeline_2d_src[fs_key];
345 break;
346 case VK_IMAGE_TYPE_3D:
347 pipeline = device->meta_state.blit.pipeline_3d_src[fs_key];
348 break;
349 default:
350 unreachable(!"bad VkImageType");
351 }
352 break;
353 }
354 case VK_IMAGE_ASPECT_DEPTH_BIT:
355 radv_CmdBeginRenderPass(radv_cmd_buffer_to_handle(cmd_buffer),
356 &(VkRenderPassBeginInfo) {
357 .sType = VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO,
358 .renderPass = device->meta_state.blit.depth_only_rp,
359 .framebuffer = fb,
360 .renderArea = {
361 .offset = { dest_box.offset.x, dest_box.offset.y },
362 .extent = { dest_box.extent.width, dest_box.extent.height },
363 },
364 .clearValueCount = 0,
365 .pClearValues = NULL,
366 }, VK_SUBPASS_CONTENTS_INLINE);
367 switch (src_image->type) {
368 case VK_IMAGE_TYPE_1D:
369 pipeline = device->meta_state.blit.depth_only_1d_pipeline;
370 break;
371 case VK_IMAGE_TYPE_2D:
372 pipeline = device->meta_state.blit.depth_only_2d_pipeline;
373 break;
374 case VK_IMAGE_TYPE_3D:
375 pipeline = device->meta_state.blit.depth_only_3d_pipeline;
376 break;
377 default:
378 unreachable(!"bad VkImageType");
379 }
380 break;
381 case VK_IMAGE_ASPECT_STENCIL_BIT:
382 radv_CmdBeginRenderPass(radv_cmd_buffer_to_handle(cmd_buffer),
383 &(VkRenderPassBeginInfo) {
384 .sType = VK_STRUCTURE_TYPE_RENDER_PASS_BEGIN_INFO,
385 .renderPass = device->meta_state.blit.stencil_only_rp,
386 .framebuffer = fb,
387 .renderArea = {
388 .offset = { dest_box.offset.x, dest_box.offset.y },
389 .extent = { dest_box.extent.width, dest_box.extent.height },
390 },
391 .clearValueCount = 0,
392 .pClearValues = NULL,
393 }, VK_SUBPASS_CONTENTS_INLINE);
394 switch (src_image->type) {
395 case VK_IMAGE_TYPE_1D:
396 pipeline = device->meta_state.blit.stencil_only_1d_pipeline;
397 break;
398 case VK_IMAGE_TYPE_2D:
399 pipeline = device->meta_state.blit.stencil_only_2d_pipeline;
400 break;
401 case VK_IMAGE_TYPE_3D:
402 pipeline = device->meta_state.blit.stencil_only_3d_pipeline;
403 break;
404 default:
405 unreachable(!"bad VkImageType");
406 }
407 break;
408 default:
409 unreachable(!"bad VkImageType");
410 }
411
412 radv_CmdBindPipeline(radv_cmd_buffer_to_handle(cmd_buffer),
413 VK_PIPELINE_BIND_POINT_GRAPHICS, pipeline);
414
415 radv_meta_push_descriptor_set(cmd_buffer, VK_PIPELINE_BIND_POINT_GRAPHICS,
416 device->meta_state.blit.pipeline_layout,
417 0, /* set */
418 1, /* descriptorWriteCount */
419 (VkWriteDescriptorSet[]) {
420 {
421 .sType = VK_STRUCTURE_TYPE_WRITE_DESCRIPTOR_SET,
422 .dstBinding = 0,
423 .dstArrayElement = 0,
424 .descriptorCount = 1,
425 .descriptorType = VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER,
426 .pImageInfo = (VkDescriptorImageInfo[]) {
427 {
428 .sampler = sampler,
429 .imageView = radv_image_view_to_handle(src_iview),
430 .imageLayout = VK_IMAGE_LAYOUT_GENERAL,
431 },
432 }
433 }
434 });
435
436 radv_CmdSetViewport(radv_cmd_buffer_to_handle(cmd_buffer), 0, 1, &(VkViewport) {
437 .x = dest_offset_0.x,
438 .y = dest_offset_0.y,
439 .width = dest_offset_1.x - dest_offset_0.x,
440 .height = dest_offset_1.y - dest_offset_0.y,
441 .minDepth = 0.0f,
442 .maxDepth = 1.0f
443 });
444
445 radv_CmdSetScissor(radv_cmd_buffer_to_handle(cmd_buffer), 0, 1, &(VkRect2D) {
446 .offset = (VkOffset2D) { MIN2(dest_offset_0.x, dest_offset_1.x), MIN2(dest_offset_0.y, dest_offset_1.y) },
447 .extent = (VkExtent2D) {
448 abs(dest_offset_1.x - dest_offset_0.x),
449 abs(dest_offset_1.y - dest_offset_0.y)
450 },
451 });
452
453 radv_CmdDraw(radv_cmd_buffer_to_handle(cmd_buffer), 3, 1, 0, 0);
454
455 radv_CmdEndRenderPass(radv_cmd_buffer_to_handle(cmd_buffer));
456
457 /* At the point where we emit the draw call, all data from the
458 * descriptor sets, etc. has been used. We are free to delete it.
459 */
460 /* TODO: above comment is not valid for at least descriptor sets/pools,
461 * as we may not free them till after execution finishes. Check others. */
462
463 radv_DestroySampler(radv_device_to_handle(device), sampler,
464 &cmd_buffer->pool->alloc);
465 radv_DestroyFramebuffer(radv_device_to_handle(device), fb,
466 &cmd_buffer->pool->alloc);
467 }
468
469 static bool
470 flip_coords(unsigned *src0, unsigned *src1, unsigned *dst0, unsigned *dst1)
471 {
472 bool flip = false;
473 if (*src0 > *src1) {
474 unsigned tmp = *src0;
475 *src0 = *src1;
476 *src1 = tmp;
477 flip = !flip;
478 }
479
480 if (*dst0 > *dst1) {
481 unsigned tmp = *dst0;
482 *dst0 = *dst1;
483 *dst1 = tmp;
484 flip = !flip;
485 }
486 return flip;
487 }
488
489 void radv_CmdBlitImage(
490 VkCommandBuffer commandBuffer,
491 VkImage srcImage,
492 VkImageLayout srcImageLayout,
493 VkImage destImage,
494 VkImageLayout destImageLayout,
495 uint32_t regionCount,
496 const VkImageBlit* pRegions,
497 VkFilter filter)
498
499 {
500 RADV_FROM_HANDLE(radv_cmd_buffer, cmd_buffer, commandBuffer);
501 RADV_FROM_HANDLE(radv_image, src_image, srcImage);
502 RADV_FROM_HANDLE(radv_image, dest_image, destImage);
503 struct radv_meta_saved_state saved_state;
504
505 /* From the Vulkan 1.0 spec:
506 *
507 * vkCmdBlitImage must not be used for multisampled source or
508 * destination images. Use vkCmdResolveImage for this purpose.
509 */
510 assert(src_image->info.samples == 1);
511 assert(dest_image->info.samples == 1);
512
513 radv_meta_save_graphics_reset_vport_scissor_novertex(&saved_state, cmd_buffer,
514 RADV_META_SAVE_GRAPHICS_PIPELINE |
515 RADV_META_SAVE_CONSTANTS |
516 RADV_META_SAVE_DESCRIPTORS);
517
518 for (unsigned r = 0; r < regionCount; r++) {
519 const VkImageSubresourceLayers *src_res = &pRegions[r].srcSubresource;
520 const VkImageSubresourceLayers *dst_res = &pRegions[r].dstSubresource;
521 struct radv_image_view src_iview;
522 radv_image_view_init(&src_iview, cmd_buffer->device,
523 &(VkImageViewCreateInfo) {
524 .sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO,
525 .image = srcImage,
526 .viewType = radv_meta_get_view_type(src_image),
527 .format = src_image->vk_format,
528 .subresourceRange = {
529 .aspectMask = src_res->aspectMask,
530 .baseMipLevel = src_res->mipLevel,
531 .levelCount = 1,
532 .baseArrayLayer = src_res->baseArrayLayer,
533 .layerCount = 1
534 },
535 });
536
537 unsigned dst_start, dst_end;
538 if (dest_image->type == VK_IMAGE_TYPE_3D) {
539 assert(dst_res->baseArrayLayer == 0);
540 dst_start = pRegions[r].dstOffsets[0].z;
541 dst_end = pRegions[r].dstOffsets[1].z;
542 } else {
543 dst_start = dst_res->baseArrayLayer;
544 dst_end = dst_start + dst_res->layerCount;
545 }
546
547 unsigned src_start, src_end;
548 if (src_image->type == VK_IMAGE_TYPE_3D) {
549 assert(src_res->baseArrayLayer == 0);
550 src_start = pRegions[r].srcOffsets[0].z;
551 src_end = pRegions[r].srcOffsets[1].z;
552 } else {
553 src_start = src_res->baseArrayLayer;
554 src_end = src_start + src_res->layerCount;
555 }
556
557 bool flip_z = flip_coords(&src_start, &src_end, &dst_start, &dst_end);
558 float src_z_step = (float)(src_end + 1 - src_start) /
559 (float)(dst_end + 1 - dst_start);
560
561 if (flip_z) {
562 src_start = src_end;
563 src_z_step *= -1;
564 }
565
566 unsigned src_x0 = pRegions[r].srcOffsets[0].x;
567 unsigned src_x1 = pRegions[r].srcOffsets[1].x;
568 unsigned dst_x0 = pRegions[r].dstOffsets[0].x;
569 unsigned dst_x1 = pRegions[r].dstOffsets[1].x;
570
571 unsigned src_y0 = pRegions[r].srcOffsets[0].y;
572 unsigned src_y1 = pRegions[r].srcOffsets[1].y;
573 unsigned dst_y0 = pRegions[r].dstOffsets[0].y;
574 unsigned dst_y1 = pRegions[r].dstOffsets[1].y;
575
576 VkRect2D dest_box;
577 dest_box.offset.x = MIN2(dst_x0, dst_x1);
578 dest_box.offset.y = MIN2(dst_y0, dst_y1);
579 dest_box.extent.width = abs(dst_x1 - dst_x0);
580 dest_box.extent.height = abs(dst_y1 - dst_y0);
581
582 struct radv_image_view dest_iview;
583 const unsigned num_layers = dst_end - dst_start;
584 for (unsigned i = 0; i < num_layers; i++) {
585 const VkOffset3D dest_offset_0 = {
586 .x = dst_x0,
587 .y = dst_y0,
588 .z = dst_start + i ,
589 };
590 const VkOffset3D dest_offset_1 = {
591 .x = dst_x1,
592 .y = dst_y1,
593 .z = dst_start + i ,
594 };
595 VkOffset3D src_offset_0 = {
596 .x = src_x0,
597 .y = src_y0,
598 .z = src_start + i * src_z_step,
599 };
600 VkOffset3D src_offset_1 = {
601 .x = src_x1,
602 .y = src_y1,
603 .z = src_start + i * src_z_step,
604 };
605 const uint32_t dest_array_slice =
606 radv_meta_get_iview_layer(dest_image, dst_res,
607 &dest_offset_0);
608
609 radv_image_view_init(&dest_iview, cmd_buffer->device,
610 &(VkImageViewCreateInfo) {
611 .sType = VK_STRUCTURE_TYPE_IMAGE_VIEW_CREATE_INFO,
612 .image = destImage,
613 .viewType = radv_meta_get_view_type(dest_image),
614 .format = dest_image->vk_format,
615 .subresourceRange = {
616 .aspectMask = dst_res->aspectMask,
617 .baseMipLevel = dst_res->mipLevel,
618 .levelCount = 1,
619 .baseArrayLayer = dest_array_slice,
620 .layerCount = 1
621 },
622 });
623 meta_emit_blit(cmd_buffer,
624 src_image, &src_iview,
625 src_offset_0, src_offset_1,
626 dest_image, &dest_iview,
627 dest_offset_0, dest_offset_1,
628 dest_box,
629 filter);
630 }
631 }
632
633 radv_meta_restore(&saved_state, cmd_buffer);
634 }
635
636 void
637 radv_device_finish_meta_blit_state(struct radv_device *device)
638 {
639 struct radv_meta_state *state = &device->meta_state;
640
641 for (unsigned i = 0; i < NUM_META_FS_KEYS; ++i) {
642 radv_DestroyRenderPass(radv_device_to_handle(device),
643 state->blit.render_pass[i],
644 &state->alloc);
645 radv_DestroyPipeline(radv_device_to_handle(device),
646 state->blit.pipeline_1d_src[i],
647 &state->alloc);
648 radv_DestroyPipeline(radv_device_to_handle(device),
649 state->blit.pipeline_2d_src[i],
650 &state->alloc);
651 radv_DestroyPipeline(radv_device_to_handle(device),
652 state->blit.pipeline_3d_src[i],
653 &state->alloc);
654 }
655
656 radv_DestroyRenderPass(radv_device_to_handle(device),
657 state->blit.depth_only_rp, &state->alloc);
658 radv_DestroyPipeline(radv_device_to_handle(device),
659 state->blit.depth_only_1d_pipeline, &state->alloc);
660 radv_DestroyPipeline(radv_device_to_handle(device),
661 state->blit.depth_only_2d_pipeline, &state->alloc);
662 radv_DestroyPipeline(radv_device_to_handle(device),
663 state->blit.depth_only_3d_pipeline, &state->alloc);
664
665 radv_DestroyRenderPass(radv_device_to_handle(device),
666 state->blit.stencil_only_rp, &state->alloc);
667 radv_DestroyPipeline(radv_device_to_handle(device),
668 state->blit.stencil_only_1d_pipeline,
669 &state->alloc);
670 radv_DestroyPipeline(radv_device_to_handle(device),
671 state->blit.stencil_only_2d_pipeline,
672 &state->alloc);
673 radv_DestroyPipeline(radv_device_to_handle(device),
674 state->blit.stencil_only_3d_pipeline,
675 &state->alloc);
676
677 radv_DestroyPipelineLayout(radv_device_to_handle(device),
678 state->blit.pipeline_layout, &state->alloc);
679 radv_DestroyDescriptorSetLayout(radv_device_to_handle(device),
680 state->blit.ds_layout, &state->alloc);
681 }
682
683 static VkFormat pipeline_formats[] = {
684 VK_FORMAT_R8G8B8A8_UNORM,
685 VK_FORMAT_R8G8B8A8_UINT,
686 VK_FORMAT_R8G8B8A8_SINT,
687 VK_FORMAT_A2R10G10B10_UINT_PACK32,
688 VK_FORMAT_A2R10G10B10_SINT_PACK32,
689 VK_FORMAT_R16G16B16A16_UNORM,
690 VK_FORMAT_R16G16B16A16_SNORM,
691 VK_FORMAT_R16G16B16A16_UINT,
692 VK_FORMAT_R16G16B16A16_SINT,
693 VK_FORMAT_R32_SFLOAT,
694 VK_FORMAT_R32G32_SFLOAT,
695 VK_FORMAT_R32G32B32A32_SFLOAT
696 };
697
698 static VkResult
699 radv_device_init_meta_blit_color(struct radv_device *device,
700 struct radv_shader_module *vs)
701 {
702 struct radv_shader_module fs_1d = {0}, fs_2d = {0}, fs_3d = {0};
703 VkResult result;
704
705 fs_1d.nir = build_nir_copy_fragment_shader(GLSL_SAMPLER_DIM_1D);
706 fs_2d.nir = build_nir_copy_fragment_shader(GLSL_SAMPLER_DIM_2D);
707 fs_3d.nir = build_nir_copy_fragment_shader(GLSL_SAMPLER_DIM_3D);
708
709 for (unsigned i = 0; i < ARRAY_SIZE(pipeline_formats); ++i) {
710 unsigned key = radv_format_meta_fs_key(pipeline_formats[i]);
711 result = radv_CreateRenderPass(radv_device_to_handle(device),
712 &(VkRenderPassCreateInfo) {
713 .sType = VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO,
714 .attachmentCount = 1,
715 .pAttachments = &(VkAttachmentDescription) {
716 .format = pipeline_formats[i],
717 .loadOp = VK_ATTACHMENT_LOAD_OP_LOAD,
718 .storeOp = VK_ATTACHMENT_STORE_OP_STORE,
719 .initialLayout = VK_IMAGE_LAYOUT_GENERAL,
720 .finalLayout = VK_IMAGE_LAYOUT_GENERAL,
721 },
722 .subpassCount = 1,
723 .pSubpasses = &(VkSubpassDescription) {
724 .pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS,
725 .inputAttachmentCount = 0,
726 .colorAttachmentCount = 1,
727 .pColorAttachments = &(VkAttachmentReference) {
728 .attachment = 0,
729 .layout = VK_IMAGE_LAYOUT_GENERAL,
730 },
731 .pResolveAttachments = NULL,
732 .pDepthStencilAttachment = &(VkAttachmentReference) {
733 .attachment = VK_ATTACHMENT_UNUSED,
734 .layout = VK_IMAGE_LAYOUT_GENERAL,
735 },
736 .preserveAttachmentCount = 1,
737 .pPreserveAttachments = (uint32_t[]) { 0 },
738 },
739 .dependencyCount = 0,
740 }, &device->meta_state.alloc, &device->meta_state.blit.render_pass[key]);
741 if (result != VK_SUCCESS)
742 goto fail;
743
744 VkPipelineVertexInputStateCreateInfo vi_create_info = {
745 .sType = VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO,
746 .vertexBindingDescriptionCount = 0,
747 .vertexAttributeDescriptionCount = 0,
748 };
749
750 VkPipelineShaderStageCreateInfo pipeline_shader_stages[] = {
751 {
752 .sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO,
753 .stage = VK_SHADER_STAGE_VERTEX_BIT,
754 .module = radv_shader_module_to_handle(vs),
755 .pName = "main",
756 .pSpecializationInfo = NULL
757 }, {
758 .sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO,
759 .stage = VK_SHADER_STAGE_FRAGMENT_BIT,
760 .module = VK_NULL_HANDLE, /* TEMPLATE VALUE! FILL ME IN! */
761 .pName = "main",
762 .pSpecializationInfo = NULL
763 },
764 };
765
766 const VkGraphicsPipelineCreateInfo vk_pipeline_info = {
767 .sType = VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO,
768 .stageCount = ARRAY_SIZE(pipeline_shader_stages),
769 .pStages = pipeline_shader_stages,
770 .pVertexInputState = &vi_create_info,
771 .pInputAssemblyState = &(VkPipelineInputAssemblyStateCreateInfo) {
772 .sType = VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO,
773 .topology = VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP,
774 .primitiveRestartEnable = false,
775 },
776 .pViewportState = &(VkPipelineViewportStateCreateInfo) {
777 .sType = VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO,
778 .viewportCount = 1,
779 .scissorCount = 1,
780 },
781 .pRasterizationState = &(VkPipelineRasterizationStateCreateInfo) {
782 .sType = VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO,
783 .rasterizerDiscardEnable = false,
784 .polygonMode = VK_POLYGON_MODE_FILL,
785 .cullMode = VK_CULL_MODE_NONE,
786 .frontFace = VK_FRONT_FACE_COUNTER_CLOCKWISE
787 },
788 .pMultisampleState = &(VkPipelineMultisampleStateCreateInfo) {
789 .sType = VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO,
790 .rasterizationSamples = 1,
791 .sampleShadingEnable = false,
792 .pSampleMask = (VkSampleMask[]) { UINT32_MAX },
793 },
794 .pColorBlendState = &(VkPipelineColorBlendStateCreateInfo) {
795 .sType = VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO,
796 .attachmentCount = 1,
797 .pAttachments = (VkPipelineColorBlendAttachmentState []) {
798 { .colorWriteMask =
799 VK_COLOR_COMPONENT_A_BIT |
800 VK_COLOR_COMPONENT_R_BIT |
801 VK_COLOR_COMPONENT_G_BIT |
802 VK_COLOR_COMPONENT_B_BIT },
803 }
804 },
805 .pDynamicState = &(VkPipelineDynamicStateCreateInfo) {
806 .sType = VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO,
807 .dynamicStateCount = 4,
808 .pDynamicStates = (VkDynamicState[]) {
809 VK_DYNAMIC_STATE_VIEWPORT,
810 VK_DYNAMIC_STATE_SCISSOR,
811 VK_DYNAMIC_STATE_LINE_WIDTH,
812 VK_DYNAMIC_STATE_BLEND_CONSTANTS,
813 },
814 },
815 .flags = 0,
816 .layout = device->meta_state.blit.pipeline_layout,
817 .renderPass = device->meta_state.blit.render_pass[key],
818 .subpass = 0,
819 };
820
821 const struct radv_graphics_pipeline_create_info radv_pipeline_info = {
822 .use_rectlist = true
823 };
824
825 pipeline_shader_stages[1].module = radv_shader_module_to_handle(&fs_1d);
826 result = radv_graphics_pipeline_create(radv_device_to_handle(device),
827 radv_pipeline_cache_to_handle(&device->meta_state.cache),
828 &vk_pipeline_info, &radv_pipeline_info,
829 &device->meta_state.alloc, &device->meta_state.blit.pipeline_1d_src[key]);
830 if (result != VK_SUCCESS)
831 goto fail;
832
833 pipeline_shader_stages[1].module = radv_shader_module_to_handle(&fs_2d);
834 result = radv_graphics_pipeline_create(radv_device_to_handle(device),
835 radv_pipeline_cache_to_handle(&device->meta_state.cache),
836 &vk_pipeline_info, &radv_pipeline_info,
837 &device->meta_state.alloc, &device->meta_state.blit.pipeline_2d_src[key]);
838 if (result != VK_SUCCESS)
839 goto fail;
840
841 pipeline_shader_stages[1].module = radv_shader_module_to_handle(&fs_3d);
842 result = radv_graphics_pipeline_create(radv_device_to_handle(device),
843 radv_pipeline_cache_to_handle(&device->meta_state.cache),
844 &vk_pipeline_info, &radv_pipeline_info,
845 &device->meta_state.alloc, &device->meta_state.blit.pipeline_3d_src[key]);
846 if (result != VK_SUCCESS)
847 goto fail;
848
849 }
850
851 result = VK_SUCCESS;
852 fail:
853 ralloc_free(fs_1d.nir);
854 ralloc_free(fs_2d.nir);
855 ralloc_free(fs_3d.nir);
856 return result;
857 }
858
859 static VkResult
860 radv_device_init_meta_blit_depth(struct radv_device *device,
861 struct radv_shader_module *vs)
862 {
863 struct radv_shader_module fs_1d = {0}, fs_2d = {0}, fs_3d = {0};
864 VkResult result;
865
866 fs_1d.nir = build_nir_copy_fragment_shader_depth(GLSL_SAMPLER_DIM_1D);
867 fs_2d.nir = build_nir_copy_fragment_shader_depth(GLSL_SAMPLER_DIM_2D);
868 fs_3d.nir = build_nir_copy_fragment_shader_depth(GLSL_SAMPLER_DIM_3D);
869
870 result = radv_CreateRenderPass(radv_device_to_handle(device),
871 &(VkRenderPassCreateInfo) {
872 .sType = VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO,
873 .attachmentCount = 1,
874 .pAttachments = &(VkAttachmentDescription) {
875 .format = VK_FORMAT_D32_SFLOAT,
876 .loadOp = VK_ATTACHMENT_LOAD_OP_LOAD,
877 .storeOp = VK_ATTACHMENT_STORE_OP_STORE,
878 .initialLayout = VK_IMAGE_LAYOUT_GENERAL,
879 .finalLayout = VK_IMAGE_LAYOUT_GENERAL,
880 },
881 .subpassCount = 1,
882 .pSubpasses = &(VkSubpassDescription) {
883 .pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS,
884 .inputAttachmentCount = 0,
885 .colorAttachmentCount = 0,
886 .pColorAttachments = NULL,
887 .pResolveAttachments = NULL,
888 .pDepthStencilAttachment = &(VkAttachmentReference) {
889 .attachment = 0,
890 .layout = VK_IMAGE_LAYOUT_GENERAL,
891 },
892 .preserveAttachmentCount = 1,
893 .pPreserveAttachments = (uint32_t[]) { 0 },
894 },
895 .dependencyCount = 0,
896 }, &device->meta_state.alloc, &device->meta_state.blit.depth_only_rp);
897 if (result != VK_SUCCESS)
898 goto fail;
899
900 VkPipelineVertexInputStateCreateInfo vi_create_info = {
901 .sType = VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO,
902 .vertexBindingDescriptionCount = 0,
903 .vertexAttributeDescriptionCount = 0,
904 };
905
906 VkPipelineShaderStageCreateInfo pipeline_shader_stages[] = {
907 {
908 .sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO,
909 .stage = VK_SHADER_STAGE_VERTEX_BIT,
910 .module = radv_shader_module_to_handle(vs),
911 .pName = "main",
912 .pSpecializationInfo = NULL
913 }, {
914 .sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO,
915 .stage = VK_SHADER_STAGE_FRAGMENT_BIT,
916 .module = VK_NULL_HANDLE, /* TEMPLATE VALUE! FILL ME IN! */
917 .pName = "main",
918 .pSpecializationInfo = NULL
919 },
920 };
921
922 const VkGraphicsPipelineCreateInfo vk_pipeline_info = {
923 .sType = VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO,
924 .stageCount = ARRAY_SIZE(pipeline_shader_stages),
925 .pStages = pipeline_shader_stages,
926 .pVertexInputState = &vi_create_info,
927 .pInputAssemblyState = &(VkPipelineInputAssemblyStateCreateInfo) {
928 .sType = VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO,
929 .topology = VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP,
930 .primitiveRestartEnable = false,
931 },
932 .pViewportState = &(VkPipelineViewportStateCreateInfo) {
933 .sType = VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO,
934 .viewportCount = 1,
935 .scissorCount = 1,
936 },
937 .pRasterizationState = &(VkPipelineRasterizationStateCreateInfo) {
938 .sType = VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO,
939 .rasterizerDiscardEnable = false,
940 .polygonMode = VK_POLYGON_MODE_FILL,
941 .cullMode = VK_CULL_MODE_NONE,
942 .frontFace = VK_FRONT_FACE_COUNTER_CLOCKWISE
943 },
944 .pMultisampleState = &(VkPipelineMultisampleStateCreateInfo) {
945 .sType = VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO,
946 .rasterizationSamples = 1,
947 .sampleShadingEnable = false,
948 .pSampleMask = (VkSampleMask[]) { UINT32_MAX },
949 },
950 .pColorBlendState = &(VkPipelineColorBlendStateCreateInfo) {
951 .sType = VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO,
952 .attachmentCount = 0,
953 .pAttachments = NULL,
954 },
955 .pDepthStencilState = &(VkPipelineDepthStencilStateCreateInfo) {
956 .sType = VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO,
957 .depthTestEnable = true,
958 .depthWriteEnable = true,
959 .depthCompareOp = VK_COMPARE_OP_ALWAYS,
960 },
961 .pDynamicState = &(VkPipelineDynamicStateCreateInfo) {
962 .sType = VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO,
963 .dynamicStateCount = 9,
964 .pDynamicStates = (VkDynamicState[]) {
965 VK_DYNAMIC_STATE_VIEWPORT,
966 VK_DYNAMIC_STATE_SCISSOR,
967 VK_DYNAMIC_STATE_LINE_WIDTH,
968 VK_DYNAMIC_STATE_DEPTH_BIAS,
969 VK_DYNAMIC_STATE_BLEND_CONSTANTS,
970 VK_DYNAMIC_STATE_DEPTH_BOUNDS,
971 VK_DYNAMIC_STATE_STENCIL_COMPARE_MASK,
972 VK_DYNAMIC_STATE_STENCIL_WRITE_MASK,
973 VK_DYNAMIC_STATE_STENCIL_REFERENCE,
974 },
975 },
976 .flags = 0,
977 .layout = device->meta_state.blit.pipeline_layout,
978 .renderPass = device->meta_state.blit.depth_only_rp,
979 .subpass = 0,
980 };
981
982 const struct radv_graphics_pipeline_create_info radv_pipeline_info = {
983 .use_rectlist = true
984 };
985
986 pipeline_shader_stages[1].module = radv_shader_module_to_handle(&fs_1d);
987 result = radv_graphics_pipeline_create(radv_device_to_handle(device),
988 radv_pipeline_cache_to_handle(&device->meta_state.cache),
989 &vk_pipeline_info, &radv_pipeline_info,
990 &device->meta_state.alloc, &device->meta_state.blit.depth_only_1d_pipeline);
991 if (result != VK_SUCCESS)
992 goto fail;
993
994 pipeline_shader_stages[1].module = radv_shader_module_to_handle(&fs_2d);
995 result = radv_graphics_pipeline_create(radv_device_to_handle(device),
996 radv_pipeline_cache_to_handle(&device->meta_state.cache),
997 &vk_pipeline_info, &radv_pipeline_info,
998 &device->meta_state.alloc, &device->meta_state.blit.depth_only_2d_pipeline);
999 if (result != VK_SUCCESS)
1000 goto fail;
1001
1002 pipeline_shader_stages[1].module = radv_shader_module_to_handle(&fs_3d);
1003 result = radv_graphics_pipeline_create(radv_device_to_handle(device),
1004 radv_pipeline_cache_to_handle(&device->meta_state.cache),
1005 &vk_pipeline_info, &radv_pipeline_info,
1006 &device->meta_state.alloc, &device->meta_state.blit.depth_only_3d_pipeline);
1007 if (result != VK_SUCCESS)
1008 goto fail;
1009
1010 fail:
1011 ralloc_free(fs_1d.nir);
1012 ralloc_free(fs_2d.nir);
1013 ralloc_free(fs_3d.nir);
1014 return result;
1015 }
1016
1017 static VkResult
1018 radv_device_init_meta_blit_stencil(struct radv_device *device,
1019 struct radv_shader_module *vs)
1020 {
1021 struct radv_shader_module fs_1d = {0}, fs_2d = {0}, fs_3d = {0};
1022 VkResult result;
1023
1024 fs_1d.nir = build_nir_copy_fragment_shader_stencil(GLSL_SAMPLER_DIM_1D);
1025 fs_2d.nir = build_nir_copy_fragment_shader_stencil(GLSL_SAMPLER_DIM_2D);
1026 fs_3d.nir = build_nir_copy_fragment_shader_stencil(GLSL_SAMPLER_DIM_3D);
1027
1028 result = radv_CreateRenderPass(radv_device_to_handle(device),
1029 &(VkRenderPassCreateInfo) {
1030 .sType = VK_STRUCTURE_TYPE_RENDER_PASS_CREATE_INFO,
1031 .attachmentCount = 1,
1032 .pAttachments = &(VkAttachmentDescription) {
1033 .format = VK_FORMAT_S8_UINT,
1034 .loadOp = VK_ATTACHMENT_LOAD_OP_LOAD,
1035 .storeOp = VK_ATTACHMENT_STORE_OP_STORE,
1036 .initialLayout = VK_IMAGE_LAYOUT_GENERAL,
1037 .finalLayout = VK_IMAGE_LAYOUT_GENERAL,
1038 },
1039 .subpassCount = 1,
1040 .pSubpasses = &(VkSubpassDescription) {
1041 .pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS,
1042 .inputAttachmentCount = 0,
1043 .colorAttachmentCount = 0,
1044 .pColorAttachments = NULL,
1045 .pResolveAttachments = NULL,
1046 .pDepthStencilAttachment = &(VkAttachmentReference) {
1047 .attachment = 0,
1048 .layout = VK_IMAGE_LAYOUT_GENERAL,
1049 },
1050 .preserveAttachmentCount = 1,
1051 .pPreserveAttachments = (uint32_t[]) { 0 },
1052 },
1053 .dependencyCount = 0,
1054 }, &device->meta_state.alloc, &device->meta_state.blit.stencil_only_rp);
1055 if (result != VK_SUCCESS)
1056 goto fail;
1057
1058 VkPipelineVertexInputStateCreateInfo vi_create_info = {
1059 .sType = VK_STRUCTURE_TYPE_PIPELINE_VERTEX_INPUT_STATE_CREATE_INFO,
1060 .vertexBindingDescriptionCount = 0,
1061 .vertexAttributeDescriptionCount = 0,
1062 };
1063
1064 VkPipelineShaderStageCreateInfo pipeline_shader_stages[] = {
1065 {
1066 .sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO,
1067 .stage = VK_SHADER_STAGE_VERTEX_BIT,
1068 .module = radv_shader_module_to_handle(vs),
1069 .pName = "main",
1070 .pSpecializationInfo = NULL
1071 }, {
1072 .sType = VK_STRUCTURE_TYPE_PIPELINE_SHADER_STAGE_CREATE_INFO,
1073 .stage = VK_SHADER_STAGE_FRAGMENT_BIT,
1074 .module = VK_NULL_HANDLE, /* TEMPLATE VALUE! FILL ME IN! */
1075 .pName = "main",
1076 .pSpecializationInfo = NULL
1077 },
1078 };
1079
1080 const VkGraphicsPipelineCreateInfo vk_pipeline_info = {
1081 .sType = VK_STRUCTURE_TYPE_GRAPHICS_PIPELINE_CREATE_INFO,
1082 .stageCount = ARRAY_SIZE(pipeline_shader_stages),
1083 .pStages = pipeline_shader_stages,
1084 .pVertexInputState = &vi_create_info,
1085 .pInputAssemblyState = &(VkPipelineInputAssemblyStateCreateInfo) {
1086 .sType = VK_STRUCTURE_TYPE_PIPELINE_INPUT_ASSEMBLY_STATE_CREATE_INFO,
1087 .topology = VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP,
1088 .primitiveRestartEnable = false,
1089 },
1090 .pViewportState = &(VkPipelineViewportStateCreateInfo) {
1091 .sType = VK_STRUCTURE_TYPE_PIPELINE_VIEWPORT_STATE_CREATE_INFO,
1092 .viewportCount = 1,
1093 .scissorCount = 1,
1094 },
1095 .pRasterizationState = &(VkPipelineRasterizationStateCreateInfo) {
1096 .sType = VK_STRUCTURE_TYPE_PIPELINE_RASTERIZATION_STATE_CREATE_INFO,
1097 .rasterizerDiscardEnable = false,
1098 .polygonMode = VK_POLYGON_MODE_FILL,
1099 .cullMode = VK_CULL_MODE_NONE,
1100 .frontFace = VK_FRONT_FACE_COUNTER_CLOCKWISE
1101 },
1102 .pMultisampleState = &(VkPipelineMultisampleStateCreateInfo) {
1103 .sType = VK_STRUCTURE_TYPE_PIPELINE_MULTISAMPLE_STATE_CREATE_INFO,
1104 .rasterizationSamples = 1,
1105 .sampleShadingEnable = false,
1106 .pSampleMask = (VkSampleMask[]) { UINT32_MAX },
1107 },
1108 .pColorBlendState = &(VkPipelineColorBlendStateCreateInfo) {
1109 .sType = VK_STRUCTURE_TYPE_PIPELINE_COLOR_BLEND_STATE_CREATE_INFO,
1110 .attachmentCount = 0,
1111 .pAttachments = NULL,
1112 },
1113 .pDepthStencilState = &(VkPipelineDepthStencilStateCreateInfo) {
1114 .sType = VK_STRUCTURE_TYPE_PIPELINE_DEPTH_STENCIL_STATE_CREATE_INFO,
1115 .depthTestEnable = false,
1116 .depthWriteEnable = false,
1117 .stencilTestEnable = true,
1118 .front = {
1119 .failOp = VK_STENCIL_OP_REPLACE,
1120 .passOp = VK_STENCIL_OP_REPLACE,
1121 .depthFailOp = VK_STENCIL_OP_REPLACE,
1122 .compareOp = VK_COMPARE_OP_ALWAYS,
1123 .compareMask = 0xff,
1124 .writeMask = 0xff,
1125 .reference = 0
1126 },
1127 .back = {
1128 .failOp = VK_STENCIL_OP_REPLACE,
1129 .passOp = VK_STENCIL_OP_REPLACE,
1130 .depthFailOp = VK_STENCIL_OP_REPLACE,
1131 .compareOp = VK_COMPARE_OP_ALWAYS,
1132 .compareMask = 0xff,
1133 .writeMask = 0xff,
1134 .reference = 0
1135 },
1136 .depthCompareOp = VK_COMPARE_OP_ALWAYS,
1137 },
1138
1139 .pDynamicState = &(VkPipelineDynamicStateCreateInfo) {
1140 .sType = VK_STRUCTURE_TYPE_PIPELINE_DYNAMIC_STATE_CREATE_INFO,
1141 .dynamicStateCount = 6,
1142 .pDynamicStates = (VkDynamicState[]) {
1143 VK_DYNAMIC_STATE_VIEWPORT,
1144 VK_DYNAMIC_STATE_SCISSOR,
1145 VK_DYNAMIC_STATE_LINE_WIDTH,
1146 VK_DYNAMIC_STATE_DEPTH_BIAS,
1147 VK_DYNAMIC_STATE_BLEND_CONSTANTS,
1148 VK_DYNAMIC_STATE_DEPTH_BOUNDS,
1149 },
1150 },
1151 .flags = 0,
1152 .layout = device->meta_state.blit.pipeline_layout,
1153 .renderPass = device->meta_state.blit.stencil_only_rp,
1154 .subpass = 0,
1155 };
1156
1157 const struct radv_graphics_pipeline_create_info radv_pipeline_info = {
1158 .use_rectlist = true
1159 };
1160
1161 pipeline_shader_stages[1].module = radv_shader_module_to_handle(&fs_1d);
1162 result = radv_graphics_pipeline_create(radv_device_to_handle(device),
1163 radv_pipeline_cache_to_handle(&device->meta_state.cache),
1164 &vk_pipeline_info, &radv_pipeline_info,
1165 &device->meta_state.alloc, &device->meta_state.blit.stencil_only_1d_pipeline);
1166 if (result != VK_SUCCESS)
1167 goto fail;
1168
1169 pipeline_shader_stages[1].module = radv_shader_module_to_handle(&fs_2d);
1170 result = radv_graphics_pipeline_create(radv_device_to_handle(device),
1171 radv_pipeline_cache_to_handle(&device->meta_state.cache),
1172 &vk_pipeline_info, &radv_pipeline_info,
1173 &device->meta_state.alloc, &device->meta_state.blit.stencil_only_2d_pipeline);
1174 if (result != VK_SUCCESS)
1175 goto fail;
1176
1177 pipeline_shader_stages[1].module = radv_shader_module_to_handle(&fs_3d);
1178 result = radv_graphics_pipeline_create(radv_device_to_handle(device),
1179 radv_pipeline_cache_to_handle(&device->meta_state.cache),
1180 &vk_pipeline_info, &radv_pipeline_info,
1181 &device->meta_state.alloc, &device->meta_state.blit.stencil_only_3d_pipeline);
1182 if (result != VK_SUCCESS)
1183 goto fail;
1184
1185 fail:
1186 ralloc_free(fs_1d.nir);
1187 ralloc_free(fs_2d.nir);
1188 ralloc_free(fs_3d.nir);
1189 return result;
1190 }
1191
1192 VkResult
1193 radv_device_init_meta_blit_state(struct radv_device *device)
1194 {
1195 VkResult result;
1196 struct radv_shader_module vs = {0};
1197
1198 VkDescriptorSetLayoutCreateInfo ds_layout_info = {
1199 .sType = VK_STRUCTURE_TYPE_DESCRIPTOR_SET_LAYOUT_CREATE_INFO,
1200 .flags = VK_DESCRIPTOR_SET_LAYOUT_CREATE_PUSH_DESCRIPTOR_BIT_KHR,
1201 .bindingCount = 1,
1202 .pBindings = (VkDescriptorSetLayoutBinding[]) {
1203 {
1204 .binding = 0,
1205 .descriptorType = VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER,
1206 .descriptorCount = 1,
1207 .stageFlags = VK_SHADER_STAGE_FRAGMENT_BIT,
1208 .pImmutableSamplers = NULL
1209 },
1210 }
1211 };
1212 result = radv_CreateDescriptorSetLayout(radv_device_to_handle(device),
1213 &ds_layout_info,
1214 &device->meta_state.alloc,
1215 &device->meta_state.blit.ds_layout);
1216 if (result != VK_SUCCESS)
1217 goto fail;
1218
1219 const VkPushConstantRange push_constant_range = {VK_SHADER_STAGE_VERTEX_BIT, 0, 20};
1220
1221 result = radv_CreatePipelineLayout(radv_device_to_handle(device),
1222 &(VkPipelineLayoutCreateInfo) {
1223 .sType = VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO,
1224 .setLayoutCount = 1,
1225 .pSetLayouts = &device->meta_state.blit.ds_layout,
1226 .pushConstantRangeCount = 1,
1227 .pPushConstantRanges = &push_constant_range,
1228 },
1229 &device->meta_state.alloc, &device->meta_state.blit.pipeline_layout);
1230 if (result != VK_SUCCESS)
1231 goto fail;
1232
1233 vs.nir = build_nir_vertex_shader();
1234
1235 result = radv_device_init_meta_blit_color(device, &vs);
1236 if (result != VK_SUCCESS)
1237 goto fail;
1238
1239 result = radv_device_init_meta_blit_depth(device, &vs);
1240 if (result != VK_SUCCESS)
1241 goto fail;
1242
1243 result = radv_device_init_meta_blit_stencil(device, &vs);
1244
1245 fail:
1246 ralloc_free(vs.nir);
1247 if (result != VK_SUCCESS)
1248 radv_device_finish_meta_blit_state(device);
1249 return result;
1250 }