Lines Matching refs:subpassDesc

1117     VkSubpassDescription subpassDesc;  in createDefaultRenderPass()  local
1118 memset(&subpassDesc, 0, sizeof(subpassDesc)); in createDefaultRenderPass()
1119 subpassDesc.pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS; in createDefaultRenderPass()
1120 subpassDesc.colorAttachmentCount = 1; in createDefaultRenderPass()
1121 subpassDesc.pColorAttachments = rpD->colorRefs.constData(); in createDefaultRenderPass()
1122 subpassDesc.pDepthStencilAttachment = hasDepthStencil ? &rpD->dsRef : nullptr; in createDefaultRenderPass()
1140 rpInfo.pSubpasses = &subpassDesc; in createDefaultRenderPass()
1149 subpassDesc.pResolveAttachments = rpD->resolveRefs.constData(); in createDefaultRenderPass()
1245 VkSubpassDescription subpassDesc; in createOffscreenRenderPass() local
1246 memset(&subpassDesc, 0, sizeof(subpassDesc)); in createOffscreenRenderPass()
1247 subpassDesc.pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS; in createOffscreenRenderPass()
1248 subpassDesc.colorAttachmentCount = uint32_t(rpD->colorRefs.count()); in createOffscreenRenderPass()
1250subpassDesc.pColorAttachments = !rpD->colorRefs.isEmpty() ? rpD->colorRefs.constData() : nullptr; in createOffscreenRenderPass()
1251 subpassDesc.pDepthStencilAttachment = rpD->hasDepthStencil ? &rpD->dsRef : nullptr; in createOffscreenRenderPass()
1252subpassDesc.pResolveAttachments = !rpD->resolveRefs.isEmpty() ? rpD->resolveRefs.constData() : nul… in createOffscreenRenderPass()
1260 rpInfo.pSubpasses = &subpassDesc; in createOffscreenRenderPass()