Lines Matching refs:imageCount

59 													 int				imageCount,
66 static std::string getGlslSamplerDecl (int imageCount);
67 static std::string getGlslTextureDecl (int imageCount);
68 static std::string getGlslFragColorDecl (int imageCount);
72 int imageCount);
90 int imageCount, in ImageTest() argument
98 , m_imageCount (imageCount) in ImageTest()
331 std::string ImageTest::getGlslSamplerDecl (int imageCount) in getGlslSamplerDecl() argument
334 samplerArray << "texSamplers[" << imageCount << "]"; in getGlslSamplerDecl()
336 return imageCount > 1 ? samplerArray.str() : "texSampler"; in getGlslSamplerDecl()
339 std::string ImageTest::getGlslTextureDecl (int imageCount) in getGlslTextureDecl() argument
342 textureArray << "texImages[" << imageCount << "]"; in getGlslTextureDecl()
344 return imageCount > 1 ? textureArray.str() : "texImage"; in getGlslTextureDecl()
347 std::string ImageTest::getGlslFragColorDecl (int imageCount) in getGlslFragColorDecl() argument
350 samplerArray << "fragColors[" << imageCount << "]"; in getGlslFragColorDecl()
352 return imageCount > 1 ? samplerArray.str() : "fragColor"; in getGlslFragColorDecl()
355 …st tcu::TextureFormat& format, VkImageViewType type, VkDescriptorType samplingType, int imageCount) in getGlslSampler() argument
357 std::string texSampler = imageCount > 1 ? "texSamplers[i]" : "texSampler"; in getGlslSampler()
358 std::string texImage = imageCount > 1 ? "texImages[i]" : "texImage"; in getGlslSampler()
409 …VkDescriptorType samplingType, VkImageViewType imageViewType, VkFormat imageFormat, int imageCount) in createImageSizeTests() argument
423 if (imageCount == 1) in createImageSizeTests()
433 if (imageCount == 1) in createImageSizeTests()
444 if (imageCount == 1) in createImageSizeTests()
457 if (imageCount == 1) in createImageSizeTests()
463 if (imageCount == 1) in createImageSizeTests()
469 if (imageCount == 1) in createImageSizeTests()
477 if (imageCount == 1) in createImageSizeTests()
485 if (imageCount == 1) in createImageSizeTests()
491 if (imageCount == 1) in createImageSizeTests()
514 if (imageCount == 1) in createImageSizeTests()
524 if (imageCount == 1) in createImageSizeTests()
545 imageCount, in createImageSizeTests()