Lines Matching defs:renderingAttachmentInfo

1128 		VkRenderingAttachmentInfo renderingAttachmentInfo = {
1146 renderingAttachmentInfo.resolveMode = VK_RESOLVE_MODE_AVERAGE_BIT;
1147 renderingAttachmentInfo.resolveImageView = wd.floatResolve1.view.get();
1148 renderingAttachmentInfo.resolveImageLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
1152 renderingAttachmentInfo.resolveMode = VK_RESOLVE_MODE_AVERAGE_BIT;
1155 colorAttachmentInfos[perPass.floatColor1Location] = renderingAttachmentInfo;
1162 VkRenderingAttachmentInfo renderingAttachmentInfo = {
1179 renderingAttachmentInfo.resolveMode = VK_RESOLVE_MODE_AVERAGE_BIT;
1180 renderingAttachmentInfo.resolveImageView = wd.floatResolve2.view.get();
1181 renderingAttachmentInfo.resolveImageLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
1185 renderingAttachmentInfo.resolveMode = VK_RESOLVE_MODE_AVERAGE_BIT;
1188 colorAttachmentInfos[perPass.floatColor2Location] = renderingAttachmentInfo;
1195 VkRenderingAttachmentInfo renderingAttachmentInfo = {
1212 renderingAttachmentInfo.resolveMode = VK_RESOLVE_MODE_SAMPLE_ZERO_BIT;
1213 renderingAttachmentInfo.resolveImageView = wd.intResolve.view.get();
1214 renderingAttachmentInfo.resolveImageLayout = VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL;
1218 renderingAttachmentInfo.resolveMode = VK_RESOLVE_MODE_SAMPLE_ZERO_BIT;
1221 colorAttachmentInfos[perPass.intColorLocation] = renderingAttachmentInfo;
1229 VkRenderingAttachmentInfo renderingAttachmentInfo = {
1246 renderingAttachmentInfo.resolveMode = params.perPass[passNdx].depthStencilResolveMode;
1247 renderingAttachmentInfo.resolveImageView = wd.depthStencilResolve.view.get();
1248 renderingAttachmentInfo.resolveImageLayout = VK_IMAGE_LAYOUT_DEPTH_STENCIL_ATTACHMENT_OPTIMAL;
1252 renderingAttachmentInfo.resolveMode = params.perPass[passNdx].depthStencilResolveMode;
1255 depthStencilAttachmentInfo = renderingAttachmentInfo;