Lines Matching refs:shaderSpec
76 …deqp::Context& context, const char* name, glu::ShaderType shaderType, const ShaderSpec& shaderSpec,
91 const ShaderSpec& shaderSpec, OutputType expectedOutput) in ExecutorTestCase() argument
94 , m_shaderSpec(shaderSpec) in ExecutorTestCase()
185 ShaderSpec shaderSpec; in createTestCasesForAllShaderTypes() local
186 shaderSpec.version = glu::getContextTypeGLSLVersion(contextType); in createTestCasesForAllShaderTypes()
187 shaderSpec.source = params.source; in createTestCasesForAllShaderTypes()
188 shaderSpec.outputs.push_back(Symbol("out0", glu::VarType(params.outType, glu::PRECISION_HIGHP))); in createTestCasesForAllShaderTypes()
204 shaderSpec.version = glu::GLSL_VERSION_320_ES; in createTestCasesForAllShaderTypes()
211 shaderSpec.version = glu::GLSL_VERSION_310_ES; in createTestCasesForAllShaderTypes()
223 shaderSpec.globalDeclarations += "precision highp float;\n"; in createTestCasesForAllShaderTypes()
231 …new ExecutorTestCase<OutputType>(context, caseName.c_str(), shaderType, shaderSpec, static_cast<Ou… in createTestCasesForAllShaderTypes()