Lines Matching refs:imageCount
1781 static std::string getGlslSampler (const tcu::TextureFormat& format, VkImageViewType type, VkDescriptorType samplingType, int imageCount);
1783 static std::string getGlslSamplerDecl (int imageCount);
1784 static std::string getGlslTextureDecl (int imageCount);
1974 std::string AttachmentFeedbackLoopLayoutSamplerTest::getGlslSamplerDecl (int imageCount)
1977 samplerArray << "texSamplers[" << imageCount << "]";
1979 return imageCount > 1 ? samplerArray.str() : "texSampler";
1982 std::string AttachmentFeedbackLoopLayoutSamplerTest::getGlslTextureDecl (int imageCount)
1985 textureArray << "texImages[" << imageCount << "]";
1987 return imageCount > 1 ? textureArray.str() : "texImage";
1990 std::string AttachmentFeedbackLoopLayoutSamplerTest::getGlslSampler (const tcu::TextureFormat& format, VkImageViewType type, VkDescriptorType samplingType, int imageCount)
1992 std::string texSampler = imageCount > 1 ? "texSamplers[i]" : "texSampler";
1993 std::string texImage = imageCount > 1 ? "texImages[i]" : "texImage";