diff options
author | Bas Nieuwenhuizen <[email protected]> | 2017-08-25 00:29:03 +0200 |
---|---|---|
committer | Bas Nieuwenhuizen <[email protected]> | 2017-08-25 22:47:49 +0200 |
commit | bd81cb3206e5a1f1c7cf19dffa33c0ac43b13694 (patch) | |
tree | f105958e0b91ef9a0fa38a326394f4fbd3703f04 | |
parent | e5c4e107691cf5b6e96dc43a090746c0fa17152d (diff) |
radv: Don't set a new subpass on compute resolve.
We don't use the render path so totally unneeded.
Fixes: 19be95f71e6 "radv: add subpass resolve compute path"
Reviewed-by: Dave Airlie <[email protected]>
-rw-r--r-- | src/amd/vulkan/radv_meta_resolve_cs.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/amd/vulkan/radv_meta_resolve_cs.c b/src/amd/vulkan/radv_meta_resolve_cs.c index da6ca76b6d4..ce02884d2d6 100644 --- a/src/amd/vulkan/radv_meta_resolve_cs.c +++ b/src/amd/vulkan/radv_meta_resolve_cs.c @@ -521,14 +521,6 @@ radv_cmd_buffer_resolve_subpass_cs(struct radv_cmd_buffer *cmd_buffer) if (dest_att.attachment == VK_ATTACHMENT_UNUSED) continue; - struct radv_subpass resolve_subpass = { - .color_count = 1, - .color_attachments = (VkAttachmentReference[]) { dest_att }, - .depth_stencil_attachment = { .attachment = VK_ATTACHMENT_UNUSED }, - }; - - radv_cmd_buffer_set_subpass(cmd_buffer, &resolve_subpass, false); - emit_resolve(cmd_buffer, src_iview, dst_iview, |