Home | History | Annotate | Download | only in functional

Lines Matching refs:testCtx

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)
101 testCtx.getLog() << TestLog::Message << "// ERROR: expected " << (reference ? "GL_TRUE" : "GL_FALSE") << TestLog::EndMessage;
102 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
103 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid boolean value");
107 void IsEnabledVerifier::verifyBoolean4 (tcu::TestContext& testCtx, GLenum name, bool reference0, bool reference1, bool reference2, bool reference3)
109 DE_UNREF(testCtx);
118 void IsEnabledVerifier::verifyBooleanAnything (tcu::TestContext& testCtx, GLenum name)
120 DE_UNREF(testCtx);
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)
147 if (!state.verifyValidity(testCtx))
154 testCtx.getLog() << TestLog::Message << "// ERROR: expected " << (reference ? "GL_TRUE" : "GL_FALSE") << TestLog::EndMessage;
155 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
156 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid boolean value");
160 void GetBooleanVerifier::verifyBoolean4 (tcu::TestContext& testCtx, GLenum name, bool reference0, bool reference1, bool reference2, bool reference3)
167 if (!boolVector4.verifyValidity(testCtx))
183 testCtx.getLog() << TestLog::Message << "// ERROR: expected "
189 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
190 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid boolean value");
194 void GetBooleanVerifier::verifyBooleanAnything (tcu::TestContext& testCtx, GLenum name)
201 state.verifyValidity(testCtx);
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)
228 if (!state.verifyValidity(testCtx))
235 testCtx.getLog() << TestLog::Message << "// ERROR: expected " << expectedGLState << TestLog::EndMessage;
236 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
237 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid integer value");
241 void GetIntegerVerifier::verifyBoolean4 (tcu::TestContext& testCtx, GLenum name, bool reference0, bool reference1, bool reference2, bool reference3)
248 if (!boolVector4.verifyValidity(testCtx))
264 testCtx.getLog() << TestLog::Message << "// ERROR: expected "
270 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
271 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid integer value");
275 void GetIntegerVerifier::verifyBooleanAnything (tcu::TestContext& testCtx, GLenum name)
282 state.verifyValidity(testCtx);
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)
308 if (!state.verifyValidity(testCtx))
315 testCtx.getLog() << TestLog::Message << "// ERROR: expected " << expectedGLState << "; got " << state << TestLog::EndMessage;
316 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
317 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid float value");
321 void GetFloatVerifier::verifyBoolean4 (tcu::TestContext& testCtx, GLenum name, bool reference0, bool reference1, bool reference2, bool reference3)
328 if (!boolVector4.verifyValidity(testCtx))
344 testCtx.getLog() << TestLog::Message << "// ERROR: expected "
350 if (testCtx.getTestResult() == QP_TEST_RESULT_PASS)
351 testCtx.setTestResult(QP_TEST_RESULT_FAIL, "Got invalid float value");
355 void GetFloatVerifier::verifyBooleanAnything (tcu::TestContext& testCtx, GLenum name)
362 state.verifyValidity(testCtx);