Lines Matching defs:context
123 * context object that contained individual instances of the function classes,
615 * \brief Evaluation context.
617 * The evaluation context contains everything that separates one execution of
872 //! Evaluate an expression with the given context, optionally tracing the calls to stderr.
3928 string getRequiredExtension (const RenderContext& context) const
3930 return (glu::contextSupports(context.getType(), glu::ApiType::core(4, 5))) ? "" : "GL_EXT_gpu_shader5";
3999 string getRequiredExtension (const RenderContext &context) const
4001 return m_func.getRequiredExtension(context);
4569 PrecisionCase (const Context& context,
4572 : TestCase (context.testContext,
4575 , m_ctx (context)
4578 context.testContext.getCommandLine().getBaseSeed())
5057 FuncCaseBase (const Context& context,
5060 : PrecisionCase (context, name, func.getRequiredExtension(context.renderContext)) {}
5090 FuncCase (const Context& context,
5093 : FuncCaseBase (context, name, func)
5148 InOutFuncCase (const Context& context,
5151 : FuncCaseBase (context, name, func)
5194 PrecisionCase* createFuncCase (const Context& context,
5201 return new FuncCase<Sig>(context, name, func);
5203 return new InOutFuncCase<Sig>(context, name, func);