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)
93 m_spec.version = glu::getContextTypeGLSLVersion(context.getRenderContext().getType());
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)
721 PackSnorm4x8Case (Context& context, glu::ShaderType shaderType, glu::Precision precision)
722 : ShaderPackingFunctionCase (context, (string("packsnorm4x8") + getPrecisionPostfix(precision) + getShaderTypePostfix(shaderType)).c_str(), "packSnorm4x8", shaderType)
835 UnpackSnorm4x8Case (Context& context, glu::ShaderType shaderType)
836 : ShaderPackingFunctionCase(context, (string("unpacksnorm4x8") + getShaderTypePostfix(shaderType)).c_str(), "unpackSnorm4x8", shaderType)
930 PackUnorm4x8Case (Context& context, glu::ShaderType shaderType, glu::Precision precision)
931 : ShaderPackingFunctionCase (context, (string("packunorm4x8") + getPrecisionPostfix(precision) + getShaderTypePostfix(shaderType)).c_str(), "packUnorm4x8", shaderType)
1044 UnpackUnorm4x8Case (Context& context, glu::ShaderType shaderType)
1045 : ShaderPackingFunctionCase(context, (string("unpackunorm4x8") + getShaderTypePostfix(shaderType)).c_str(), "unpackUnorm4x8", shaderType)
1136 ShaderPackingFunctionTests::ShaderPackingFunctionTests (Context& context)
1137 : TestCaseGroup(context, "pack_unpack", "Floating-point pack and unpack function tests")