Lines Matching defs:function
211 std::string getOtherFunctionArguments (const tcu::TextureFormat& format, ImageOperation function)
245 switch (function)
298 std::string getShaderImageFunctionExtensionString (ImageOperation function)
300 switch (function)
322 std::string getFunctionName (ImageOperation function)
324 switch (function)
342 std::string generateShaderSource (ImageOperation function, MemoryQualifier memory, glu::TextureTestUtil::TextureType imageType, const tcu::TextureFormat& format, glu::ShaderType shaderType)
358 params["GLSL_FUNCTION_EXTENSION"] = getShaderImageFunctionExtensionString(function);
363 params["FUNCTION_NAME"] = getFunctionName(function);
365 params["FUNCTION_ARGUMENTS"] = getOtherFunctionArguments(format, function);
370 void testShader (NegativeTestContext& ctx, ImageOperation function, MemoryQualifier memory, glu::TextureTestUtil::TextureType imageType, const tcu::TextureFormat& format)
373 ctx.beginSection(getFunctionName(function) + " " + getMemoryQualifier(memory) + " " + getShaderImageLayoutQualifier(format));
379 std::string shaderSource(generateShaderSource(function, memory, imageType, format, s_shaders[ndx]));
555 // Re-routing function template for generating the standard negative
556 // test function signature with texture type added.