Lines Matching refs:subpassDesc
69 VkSubpassDescription subpassDesc; in init() local
70 memset(&subpassDesc, 0, sizeof(VkSubpassDescription)); in init()
71 subpassDesc.flags = 0; in init()
72 subpassDesc.pipelineBindPoint = VK_PIPELINE_BIND_POINT_GRAPHICS; in init()
73 subpassDesc.inputAttachmentCount = 0; in init()
74 subpassDesc.pInputAttachments = nullptr; in init()
75 subpassDesc.pResolveAttachments = nullptr; in init()
86 subpassDesc.colorAttachmentCount = 1; in init()
96 subpassDesc.colorAttachmentCount = 0; in init()
98 subpassDesc.pColorAttachments = &colorRef; in init()
116 subpassDesc.pDepthStencilAttachment = &stencilRef; in init()
118 subpassDesc.preserveAttachmentCount = 0; in init()
119 subpassDesc.pPreserveAttachments = nullptr; in init()
132 createInfo.pSubpasses = &subpassDesc; in init()