Lines Matching refs:imageCount
61 int imageCount,
69 int imageCount,
77 static std::string getGlslSamplerDecl (int imageCount);
78 static std::string getGlslTextureDecl (int imageCount);
79 static std::string getGlslFragColorDecl (int imageCount);
83 int imageCount);
103 int imageCount, in ImageTest() argument
112 , m_imageCount (imageCount) in ImageTest()
131 int imageCount, in getImageSamplingInstanceParams() argument
180 …ge, samplerParams, 0.0f, vertices, separateStencilUsage, samplingType, imageCount, allocationKind); in getImageSamplingInstanceParams()
359 std::string ImageTest::getGlslSamplerDecl (int imageCount) in getGlslSamplerDecl() argument
362 samplerArray << "texSamplers[" << imageCount << "]"; in getGlslSamplerDecl()
364 return imageCount > 1 ? samplerArray.str() : "texSampler"; in getGlslSamplerDecl()
367 std::string ImageTest::getGlslTextureDecl (int imageCount) in getGlslTextureDecl() argument
370 textureArray << "texImages[" << imageCount << "]"; in getGlslTextureDecl()
372 return imageCount > 1 ? textureArray.str() : "texImage"; in getGlslTextureDecl()
375 std::string ImageTest::getGlslFragColorDecl (int imageCount) in getGlslFragColorDecl() argument
378 samplerArray << "fragColors[" << imageCount << "]"; in getGlslFragColorDecl()
380 return imageCount > 1 ? samplerArray.str() : "fragColor"; in getGlslFragColorDecl()
383 …st tcu::TextureFormat& format, VkImageViewType type, VkDescriptorType samplingType, int imageCount) in getGlslSampler() argument
385 std::string texSampler = imageCount > 1 ? "texSamplers[i]" : "texSampler"; in getGlslSampler()
386 std::string texImage = imageCount > 1 ? "texImages[i]" : "texImage"; in getGlslSampler()
437 …VkDescriptorType samplingType, VkImageViewType imageViewType, VkFormat imageFormat, int imageCount) in createImageSizeTests() argument
451 if (imageCount == 1) in createImageSizeTests()
461 if (imageCount == 1) in createImageSizeTests()
472 if (imageCount == 1) in createImageSizeTests()
485 if (imageCount == 1) in createImageSizeTests()
491 if (imageCount == 1) in createImageSizeTests()
497 if (imageCount == 1) in createImageSizeTests()
505 if (imageCount == 1) in createImageSizeTests()
513 if (imageCount == 1) in createImageSizeTests()
519 if (imageCount == 1) in createImageSizeTests()
542 if (imageCount == 1) in createImageSizeTests()
552 if (imageCount == 1) in createImageSizeTests()
574 imageCount, in createImageSizeTests()