Lines Matching refs:attachment_desc
1415 VkAttachmentDescription attachment_desc = {};
1416 attachment_desc.format = pCreateInfo->imageFormat;
1417 attachment_desc.samples = VK_SAMPLE_COUNT_1_BIT;
1418 attachment_desc.loadOp = VK_ATTACHMENT_LOAD_OP_LOAD;
1419 attachment_desc.storeOp = VK_ATTACHMENT_STORE_OP_STORE;
1420 attachment_desc.stencilLoadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE;
1421 attachment_desc.stencilStoreOp = VK_ATTACHMENT_STORE_OP_DONT_CARE;
1422 attachment_desc.initialLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
1423 attachment_desc.finalLayout = VK_IMAGE_LAYOUT_PRESENT_SRC_KHR;
1441 render_pass_info.pAttachments = &attachment_desc;