• Home
  • Raw
  • Download

Lines Matching refs:multisample

80 	bool			multisample;  member
123 const bool multisample) in makeRenderPass() argument
136 !multisample ? VK_SAMPLE_COUNT_1_BIT : VK_SAMPLE_COUNT_4_BIT, // VkSampleCountFlagBits samples; in makeRenderPass()
199 const bool multisample) in makeGraphicsPipeline() argument
211 …!multisample ? VK_SAMPLE_COUNT_1_BIT : VK_SAMPLE_COUNT_4_BIT, // VkSampleCountFlagBits … in makeGraphicsPipeline()
276 const bool multisample) in makeImage() argument
288 multisample ? VK_SAMPLE_COUNT_4_BIT : VK_SAMPLE_COUNT_1_BIT, // VkSampleCountFlagBits samples; in makeImage()
414 …> renderPass (makeRenderPass(vk, device, COLOR_FORMAT, caseDef.numLayers, caseDef.multisample)); in test()
446 if (caseDef.multisample) in test()
459 …colorAttachments.push_back(makeSharedPtr(makeImageView(vk, device, ! caseDef.multisample ? *colorI… in test()
464 caseDef.renderSize, VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP, layerNdx, 1u, caseDef.multisample))); in test()
487 caseDef.multisample ? *msColorImage : *colorImage, // VkImage image; in test()
500 …vk.cmdClearColorImage(*cmdBuffer, caseDef.multisample ? *msColorImage : *colorImage, VK_IMAGE_LAYO… in test()
513 caseDef.multisample ? *msColorImage : *colorImage, // VkImage image; in test()
542 if (caseDef.multisample) in test()
595 …(vk::VkAccessFlags)(caseDef.multisample ? VK_ACCESS_TRANSFER_WRITE_BIT : VK_ACCESS_COLOR_ATTACHMEN… in test()
597 …caseDef.multisample ? VK_IMAGE_LAYOUT_GENERAL : VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL, // VkIma… in test()
606 …vk.cmdPipelineBarrier(*cmdBuffer, caseDef.multisample ? VK_PIPELINE_STAGE_TRANSFER_BIT : VK_PIPELI… in test()
660 void initImagePrograms (SourceCollections& programCollection, const bool multisample) in initImagePrograms() argument
692 if (!multisample) in initImagePrograms()
772 tcu::TestStatus testNoAtt (Context& context, const bool multisample) in testNoAtt() argument
789 const deUint8 numSamples = multisample ? 4 : 1; in testNoAtt()
842 renderSize, VK_PRIMITIVE_TOPOLOGY_POINT_LIST, 0, 0u, multisample))); in testNoAtt()
949 const bool multisample) in makeRenderPassDifferentAttachmentSizes() argument
960 !multisample ? VK_SAMPLE_COUNT_1_BIT : VK_SAMPLE_COUNT_4_BIT, // VkSampleCountFlagBits samples; in makeRenderPassDifferentAttachmentSizes()
1053 …nderPassDifferentAttachmentSizes(vk, device, COLOR_FORMAT, numRenderTargets, caseDef.multisample)); in testDifferentAttachmentSizes()
1099 if (caseDef.multisample) in testDifferentAttachmentSizes()
1111 …colorAttachments.push_back(makeSharedPtr(makeImageView(vk, device, ! caseDef.multisample ? *colorI… in testDifferentAttachmentSizes()
1115 …aseDef.renderSize, VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP, 0, numRenderTargets, caseDef.multisample); in testDifferentAttachmentSizes()
1138 …caseDef.multisample ? *msColorImages[renderTargetIdx] : *colorImages[renderTargetIdx], // VkImage … in testDifferentAttachmentSizes()
1146 …vk.cmdClearColorImage(*cmdBuffer, caseDef.multisample ? *msColorImages[renderTargetIdx] : *colorIm… in testDifferentAttachmentSizes()
1159 …caseDef.multisample ? *msColorImages[renderTargetIdx] : *colorImages[renderTargetIdx], // VkImage … in testDifferentAttachmentSizes()
1182 if (caseDef.multisample) in testDifferentAttachmentSizes()
1238 …(vk::VkAccessFlags)(caseDef.multisample ? VK_ACCESS_TRANSFER_WRITE_BIT : VK_ACCESS_COLOR_ATTACHMEN… in testDifferentAttachmentSizes()
1240 …caseDef.multisample ? VK_IMAGE_LAYOUT_GENERAL : VK_IMAGE_LAYOUT_COLOR_ATTACHMENT_OPTIMAL, // VkIma… in testDifferentAttachmentSizes()
1248 …vk.cmdPipelineBarrier(*cmdBuffer, caseDef.multisample ? VK_PIPELINE_STAGE_TRANSFER_BIT : VK_PIPELI… in testDifferentAttachmentSizes()
1836 if (caseDef.multisample) in getTestCaseString()
1842 void checkSupport (Context& context, const bool multisample) in checkSupport() argument
1851 if (multisample) in checkSupport()