Lines Matching refs:sampleCount
449 deUint32 sampleCount,
453 std::vector<VkImageSp> images (sampleCount);
456 images[imageNdx] = safeSharedPtr(new vk::Unique<VkImage>(createImage(vki, physicalDevice, vkd, device, format, sampleCountBitFromomSampleCount(sampleCount), VK_IMAGE_USAGE_COLOR_ATTACHMENT_BIT, width, height)));
466 deUint32 sampleCount,
470 std::vector<VkImageSp> images (sampleCount);
508 deUint32 sampleCount,
512 std::vector<VkBufferSp> buffers (sampleCount);
538 deUint32 sampleCount,
542 const VkSampleCountFlagBits samples (sampleCountBitFromomSampleCount(sampleCount));
543 const deUint32 splitSubpassCount (deDivRoundUp32(sampleCount, MAX_COLOR_ATTACHMENT_COUNT));
596 for (deUint32 sampleNdx = 0; sampleNdx < de::min((deUint32)MAX_COLOR_ATTACHMENT_COUNT, sampleCount - splitSubpassIndex * MAX_COLOR_ATTACHMENT_COUNT); sampleNdx++)
760 deUint32 sampleCount,
767 return createRenderPass<AttachmentDescription1, AttachmentReference1, SubpassDescription1, SubpassDependency1, RenderPassCreateInfo1>(vkd, device, srcFormat, dstFormat, sampleCount, renderingType, separateStencilUsage);
769 return createRenderPass<AttachmentDescription2, AttachmentReference2, SubpassDescription2, SubpassDependency2, RenderPassCreateInfo2>(vkd, device, srcFormat, dstFormat, sampleCount, renderingType, separateStencilUsage);
849 deUint32 sampleCount)
889 sampleCountBitFromomSampleCount(sampleCount),
914 0xFFu / (sampleCount + 1)
923 0xFFu / (sampleCount + 1)
1034 deUint32 sampleCount)
1050 const std::vector<VkPipelineColorBlendAttachmentState> attachmentBlendStates (de::min((deUint32)MAX_COLOR_ATTACHMENT_COUNT, sampleCount), attachmentBlendState);
1072 sampleCountBitFromomSampleCount(sampleCount),
1122 deUint32 sampleCount)
1124 std::vector<VkPipelineSp> pipelines (deDivRoundUp32(sampleCount, MAX_COLOR_ATTACHMENT_COUNT), (VkPipelineSp)0u);
1127 pipelines[ndx] = safeSharedPtr(new Unique<VkPipeline>(createSplitPipeline(vkd, device, renderPass, (deUint32)(ndx + 1), pipelineLayout, binaryCollection, width, height, sampleCount)));
1231 , sampleCount (sampleCount_)
1238 deUint32 sampleCount;
1355 , m_sampleCount (config.sampleCount)
2023 for (deUint32 attachmentNdx = 0; attachmentNdx < de::min((deUint32)MAX_COLOR_ATTACHMENT_COUNT, config.sampleCount); attachmentNdx++)
2035 for (deUint32 attachmentNdx = 0; attachmentNdx < de::min((deUint32)MAX_COLOR_ATTACHMENT_COUNT, config.sampleCount); attachmentNdx++)
2092 for (deUint32 attachmentNdx = 0; attachmentNdx < de::min((deUint32)MAX_COLOR_ATTACHMENT_COUNT, config.sampleCount); attachmentNdx++)
2099 for (deUint32 attachmentNdx = 0; attachmentNdx < de::min((deUint32)MAX_COLOR_ATTACHMENT_COUNT, config.sampleCount); attachmentNdx++)
2201 const deUint32 sampleCount (sampleCounts[sampleCountNdx]);
2202 const TestConfig testConfig (format, sampleCount, renderingType);
2203 const std::string testName ("samples_" + de::toString(sampleCount));
2212 const TestConfig separateUsageDepthTestConfig (format, sampleCount, renderingType, TEST_DEPTH);
2215 const TestConfig separateUsageStencilTestConfig (format, sampleCount, renderingType, TEST_STENCIL);