Lines Matching defs:context

72 								ShaderPackingFunctionCase	(Context& context, const char* name, const char* description, glu::ShaderType shaderType);
88 ShaderPackingFunctionCase::ShaderPackingFunctionCase (Context& context, const char* name, const char* description, glu::ShaderType shaderType)
89 : TestCase (context, name, description)
123 PackSnorm2x16Case (Context& context, glu::ShaderType shaderType, glu::Precision precision)
124 : ShaderPackingFunctionCase (context, (string("packsnorm2x16") + getPrecisionPostfix(precision) + getShaderTypePostfix(shaderType)).c_str(), "packSnorm2x16", shaderType)
227 UnpackSnorm2x16Case (Context& context, glu::ShaderType shaderType)
228 : ShaderPackingFunctionCase(context, (string("unpacksnorm2x16") + getShaderTypePostfix(shaderType)).c_str(), "unpackSnorm2x16", shaderType)
314 PackUnorm2x16Case (Context& context, glu::ShaderType shaderType, glu::Precision precision)
315 : ShaderPackingFunctionCase (context, (string("packunorm2x16") + getPrecisionPostfix(precision) + getShaderTypePostfix(shaderType)).c_str(), "packUnorm2x16", shaderType)
418 UnpackUnorm2x16Case (Context& context, glu::ShaderType shaderType)
419 : ShaderPackingFunctionCase(context, (string("unpackunorm2x16") + getShaderTypePostfix(shaderType)).c_str(), "unpackUnorm2x16", shaderType)
505 PackHalf2x16Case (Context& context, glu::ShaderType shaderType)
506 : ShaderPackingFunctionCase(context, (string("packhalf2x16") + getShaderTypePostfix(shaderType)).c_str(), "packHalf2x16", shaderType)
611 UnpackHalf2x16Case (Context& context, glu::ShaderType shaderType)
612 : ShaderPackingFunctionCase(context, (string("unpackhalf2x16") + getShaderTypePostfix(shaderType)).c_str(), "unpackHalf2x16", shaderType)
718 ShaderPackingFunctionTests::ShaderPackingFunctionTests (Context& context)
719 : TestCaseGroup(context, "pack_unpack", "Floating-point pack and unpack function tests")