Home | History | Annotate | Download | only in functional

Lines Matching full:verifier

375 	IsEnabledStateTestCase (Context& context, StateVerifier* verifier, const char* name, const char* description, GLenum targetName, bool initial)
379 , m_verifier (verifier)
413 DepthWriteMaskTestCase (Context& context, StateVerifier* verifier, const char* name, const char* description)
415 , m_verifier (verifier)
439 SampleCoverageInvertTestCase (Context& context, StateVerifier* verifier, const char* name, const char* description)
441 , m_verifier (verifier)
465 ShaderCompilerTestCase (Context& context, StateVerifier* verifier, const char* name, const char* description)
467 , m_verifier (verifier)
484 ColorMaskTestCase (Context& context, StateVerifier* verifier, const char* name, const char* description)
486 , m_verifier (verifier)
531 StateVerifier* verifier = VERIFIERS[_verifierNdx]; \
586 FOR_EACH_VERIFIER(isEnabledVerifiers, addChild(new IsEnabledStateTestCase(m_context, verifier, (std::string(isEnableds[testNdx].name) + verifier->getTestNamePostfix()).c_str(), isEnableds[testNdx].description, isEnableds[testNdx].targetName, isEnableds[testNdx].value)));
588 FOR_EACH_VERIFIER(normalVerifiers, addChild(new SampleCoverageInvertTestCase (m_context, verifier, (std::string("sample_coverage_invert") + verifier->getTestNamePostfix()).c_str(), "SAMPLE_COVERAGE_INVERT")));
589 FOR_EACH_VERIFIER(normalVerifiers, addChild(new ColorMaskTestCase (m_context, verifier, (std::string("color_writemask") + verifier->getTestNamePostfix()).c_str(), "COLOR_WRITEMASK")));
590 FOR_EACH_VERIFIER(normalVerifiers, addChild(new DepthWriteMaskTestCase (m_context, verifier, (std::string("depth_writemask") + verifier->getTestNamePostfix()).c_str(), "DEPTH_WRITEMASK")));
591 FOR_EACH_VERIFIER(normalVerifiers, addChild(new ShaderCompilerTestCase (m_context, verifier, (std::string("shader_compiler") + verifier->getTestNamePostfix()).c_str(), "SHADER_COMPILER")));