Home | History | Annotate | Download | only in vk

Lines Matching refs:subpassDesc

50     VkSubpassDescription subpassDesc;
51 memset(&subpassDesc, 0, sizeof(VkSubpassDescription));
52 subpassDesc.flags = 0;
53 subpassDesc.pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS;
54 subpassDesc.inputAttachmentCount = 0;
55 subpassDesc.pInputAttachments = nullptr;
65 subpassDesc.colorAttachmentCount = 1;
71 subpassDesc.colorAttachmentCount = 0;
73 subpassDesc.pColorAttachments = &colorRef;
85 subpassDesc.pResolveAttachments = &resolveRef;
87 subpassDesc.pResolveAttachments = nullptr;
103 subpassDesc.pDepthStencilAttachment = &stencilRef;
105 subpassDesc.preserveAttachmentCount = 0;
106 subpassDesc.pPreserveAttachments = nullptr;
119 createInfo.pSubpasses = &subpassDesc;