Searched refs:colorAttachmentDesc (Results 1 – 2 of 2) sorted by relevance
337 VkAttachmentDescription colorAttachmentDesc; in createColorOnlyRenderPass() local344 colorAttachmentDesc.flags = 0; in createColorOnlyRenderPass()345 colorAttachmentDesc.format = renderPassParameters.colorFormat; in createColorOnlyRenderPass()346 colorAttachmentDesc.samples = renderPassParameters.colorSamples; in createColorOnlyRenderPass()347 colorAttachmentDesc.loadOp = VK_ATTACHMENT_LOAD_OP_CLEAR; in createColorOnlyRenderPass()348 colorAttachmentDesc.storeOp = VK_ATTACHMENT_STORE_OP_STORE; in createColorOnlyRenderPass()349 colorAttachmentDesc.stencilLoadOp = VK_ATTACHMENT_LOAD_OP_DONT_CARE; in createColorOnlyRenderPass()350 colorAttachmentDesc.stencilStoreOp = VK_ATTACHMENT_STORE_OP_DONT_CARE; in createColorOnlyRenderPass()351 colorAttachmentDesc.initialLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL; in createColorOnlyRenderPass()352 colorAttachmentDesc.finalLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL; in createColorOnlyRenderPass()[all …]
2051 const VkAttachmentDescription colorAttachmentDesc = in run() local2064 attachmentDescriptions.push_back(colorAttachmentDesc); in run()