Lines Matching refs:resolve
407 struct vk_subpass_attachment *resolve,
410 if (resolve->attachment == VK_ATTACHMENT_UNUSED)
414 att->resolve = resolve;
1194 /* It might be a resolve attachment */
1206 /* It might be a resolve attachment */
1652 if (sp_att->resolve != NULL) {
1653 assert(sp_att->resolve->attachment < pass->attachment_count);
1655 &cmd_buffer->attachments[sp_att->resolve->attachment];
1657 /* Resolve attachments are entirely overwritten by the resolve
1659 * the resolve as being the load.
1670 color_attachment->resolveImageLayout = sp_att->resolve->layout;
1806 if (sp_att->resolve != NULL ||
1809 const struct vk_subpass_attachment *res_sp_att = sp_att->resolve ? sp_att->resolve : sp_att;
1827 * that, if we resolve to the wrong aspect, we will still consider
1842 if (sp_att->resolve) {
1846 sp_att->resolve->layout;
1854 if (sp_att->resolve) {
1858 sp_att->resolve->stencil_layout;
1864 if (sp_att->resolve && resolved_aspects == rp_att->aspects) {
1865 /* The resolve attachment is entirely overwritten by the
1866 * resolve operation so the load op really doesn't matter.
1867 * We can consider the resolve as being the load.