Lines Matching defs:attachment_desc
1696 VkAttachmentDescription attachment_desc = {};
1697 attachment_desc.format = pCreateInfo->imageFormat;
1698 attachment_desc.samples = VK_SAMPLE_COUNT_1_BIT;
1699 attachment_desc.loadOp = VK_ATTACHMENT_LOAD_OP_LOAD;
1700 attachment_desc.storeOp = VK_ATTACHMENT_STORE_OP_STORE;
1701 attachment_desc.stencilLoadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE;
1702 attachment_desc.stencilStoreOp = VK_ATTACHMENT_STORE_OP_DONT_CARE;
1703 attachment_desc.initialLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
1704 attachment_desc.finalLayout = VK_IMAGE_LAYOUT_PRESENT_SRC_KHR;
1722 render_pass_info.pAttachments = &attachment_desc;