Lines Matching refs:imageCount

62 																 int						imageCount,
72 int imageCount,
80 static std::string getGlslSamplerDecl (int imageCount);
81 static std::string getGlslTextureDecl (int imageCount);
82 static std::string getGlslFragColorDecl (int imageCount);
86 int imageCount);
109 int imageCount,
121 , m_imageCount (imageCount)
162 int imageCount,
218 return ImageSamplingInstanceParams(m_pipelineConstructionType, renderSize, imageViewType, imageFormat, imageSize, arraySize, componentMapping, subresourceRange, samplerParams, 0.0f, vertices, separateStencilUsage, samplingType, imageCount, allocationKind, vk::VK_IMAGE_LAYOUT_SHADER_READ_ONLY_OPTIMAL, pipelineFlags);
397 std::string ImageTest::getGlslSamplerDecl (int imageCount)
400 samplerArray << "texSamplers[" << imageCount << "]";
402 return imageCount > 1 ? samplerArray.str() : "texSampler";
405 std::string ImageTest::getGlslTextureDecl (int imageCount)
408 textureArray << "texImages[" << imageCount << "]";
410 return imageCount > 1 ? textureArray.str() : "texImage";
413 std::string ImageTest::getGlslFragColorDecl (int imageCount)
416 samplerArray << "fragColors[" << imageCount << "]";
418 return imageCount > 1 ? samplerArray.str() : "fragColor";
421 std::string ImageTest::getGlslSampler (const tcu::TextureFormat& format, VkImageViewType type, VkDescriptorType samplingType, int imageCount)
423 std::string texSampler = imageCount > 1 ? "texSamplers[i]" : "texSampler";
424 std::string texImage = imageCount > 1 ? "texImages[i]" : "texImage";
482 de::MovePtr<tcu::TestCaseGroup> createImageSizeTests (tcu::TestContext& testCtx, AllocationKind allocationKind, PipelineConstructionType pipelineConstructionType, VkDescriptorType samplingType, VkImageViewType imageViewType, VkFormat imageFormat, int imageCount)
509 if (imageCount == 1)
519 if (imageCount == 1)
530 if (imageCount == 1)
543 if (imageCount == 1)
549 if (imageCount == 1)
555 if (imageCount == 1)
563 if (imageCount == 1)
571 if (imageCount == 1)
577 if (imageCount == 1)
600 if (imageCount == 1)
610 if (imageCount == 1)
636 imageCount,