Lines Matching refs:name

53 	virtual void		verifyBoolean					(tcu::TestContext& testCtx, GLenum name, bool reference)														= DE_NULL;
54 virtual void verifyBoolean4 (tcu::TestContext& testCtx, GLenum name, bool reference0, bool reference1, bool reference2, bool reference3) = DE_NULL;
55 virtual void verifyBooleanAnything (tcu::TestContext& testCtx, GLenum name) = DE_NULL;
82 void verifyBoolean (tcu::TestContext& testCtx, GLenum name, bool reference);
83 void verifyBoolean4 (tcu::TestContext& testCtx, GLenum name, bool reference0, bool reference1, bool reference2, bool reference3);
84 void verifyBooleanAnything (tcu::TestContext& testCtx, GLenum name);
92 void IsEnabledVerifier::verifyBoolean (tcu::TestContext& testCtx, GLenum name, bool reference)
96 const GLboolean state = glIsEnabled(name);
107 void IsEnabledVerifier::verifyBoolean4 (tcu::TestContext& testCtx, GLenum name, bool reference0, bool reference1, bool reference2, bool reference3)
110 DE_UNREF(name);
118 void IsEnabledVerifier::verifyBooleanAnything (tcu::TestContext& testCtx, GLenum name)
121 DE_UNREF(name);
130 void verifyBoolean (tcu::TestContext& testCtx, GLenum name, bool reference);
131 void verifyBoolean4 (tcu::TestContext& testCtx, GLenum name, bool reference0, bool reference1, bool reference2, bool reference3);
132 void verifyBooleanAnything (tcu::TestContext& testCtx, GLenum name);
140 void GetBooleanVerifier::verifyBoolean (tcu::TestContext& testCtx, GLenum name, bool reference)
145 glGetBooleanv(name, &state);
160 void GetBooleanVerifier::verifyBoolean4 (tcu::TestContext& testCtx, GLenum name, bool reference0, bool reference1, bool reference2, bool reference3)
165 glGetBooleanv(name, boolVector4);
194 void GetBooleanVerifier::verifyBooleanAnything (tcu::TestContext& testCtx, GLenum name)
199 glGetBooleanv(name, &state);
210 void verifyBoolean (tcu::TestContext& testCtx, GLenum name, bool reference);
211 void verifyBoolean4 (tcu::TestContext& testCtx, GLenum name, bool reference0, bool reference1, bool reference2, bool reference3);
212 void verifyBooleanAnything (tcu::TestContext& testCtx, GLenum name);
221 void GetIntegerVerifier::verifyBoolean (tcu::TestContext& testCtx, GLenum name, bool reference)
226 glGetIntegerv(name, &state);
241 void GetIntegerVerifier::verifyBoolean4 (tcu::TestContext& testCtx, GLenum name, bool reference0, bool reference1, bool reference2, bool reference3)
246 glGetIntegerv(name, boolVector4);
275 void GetIntegerVerifier::verifyBooleanAnything (tcu::TestContext& testCtx, GLenum name)
280 glGetIntegerv(name, &state);
291 void verifyBoolean (tcu::TestContext& testCtx, GLenum name, bool reference);
292 void verifyBoolean4 (tcu::TestContext& testCtx, GLenum name, bool reference0, bool reference1, bool reference2, bool reference3);
293 void verifyBooleanAnything (tcu::TestContext& testCtx, GLenum name);
301 void GetFloatVerifier::verifyBoolean (tcu::TestContext& testCtx, GLenum name, bool reference)
306 glGetFloatv(name, &state);
321 void GetFloatVerifier::verifyBoolean4 (tcu::TestContext& testCtx, GLenum name, bool reference0, bool reference1, bool reference2, bool reference3)
326 glGetFloatv(name, boolVector4);
355 void GetFloatVerifier::verifyBooleanAnything (tcu::TestContext& testCtx, GLenum name)
360 glGetFloatv(name, &state);
375 IsEnabledStateTestCase (Context& context, StateVerifier* verifier, const char* name, const char* description, GLenum targetName, bool initial)
376 : ApiCase (context, name, description)
413 DepthWriteMaskTestCase (Context& context, StateVerifier* verifier, const char* name, const char* description)
414 : ApiCase (context, name, description)
439 SampleCoverageInvertTestCase (Context& context, StateVerifier* verifier, const char* name, const char* description)
440 : ApiCase (context, name, description)
465 ShaderCompilerTestCase (Context& context, StateVerifier* verifier, const char* name, const char* description)
466 : ApiCase (context, name, description)
484 ColorMaskTestCase (Context& context, StateVerifier* verifier, const char* name, const char* description)
485 : ApiCase(context, name, description)
570 const char* name;
588 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)));