Home | History | Annotate | Download | only in vulkan

Lines Matching refs:desc

72 		const VkSubpassDescription *desc = &pCreateInfo->pSubpasses[i];
75 desc->inputAttachmentCount +
76 desc->colorAttachmentCount +
78 desc->colorAttachmentCount;
95 const VkSubpassDescription *desc = &pCreateInfo->pSubpasses[i];
98 subpass->input_count = desc->inputAttachmentCount;
99 subpass->color_count = desc->colorAttachmentCount;
101 if (desc->inputAttachmentCount > 0) {
103 p += desc->inputAttachmentCount;
105 for (uint32_t j = 0; j < desc->inputAttachmentCount; j++) {
107 = desc->pInputAttachments[j];
111 if (desc->colorAttachmentCount > 0) {
113 p += desc->colorAttachmentCount;
115 for (uint32_t j = 0; j < desc->colorAttachmentCount; j++) {
117 = desc->pColorAttachments[j];
122 if (desc->pResolveAttachments) {
124 p += desc->colorAttachmentCount;
126 for (uint32_t j = 0; j < desc->colorAttachmentCount; j++) {
127 uint32_t a = desc->pResolveAttachments[j].attachment;
129 = desc->pResolveAttachments[j];
135 if (desc->pDepthStencilAttachment) {
137 *desc->pDepthStencilAttachment;