Lines Matching refs:error
200 * This test verifies if read uniform variables to the buffer with bufSize less than expected result with GL_INVALID_OPERATION error;
219 bool verifyError(glw::GLint error, glw::GLint expectedError, const char* method);
292 /* veryfing gfetnUniform error messages */
373 bool GetnUniformTest::verifyError(GLint error, GLint expectedError, const char* method)
375 if (error != expectedError)
377 m_testCtx.getLog() << tcu::TestLog::Message << "Test failed! " << method << " throws unexpected error ["
378 << error << "]." << tcu::TestLog::EndMessage;
388 * This test verifies if read pixels to the buffer with bufSize less than expected result with GL_INVALID_OPERATION error;
406 bool verifyError(glw::GLint error, glw::GLint expectedError, const char* method);
418 "with GL_INVALID_OPERATION error")
612 * @param error OpenGL ES error code
613 * @param expectedError Expected error code
616 * @return true when error is as expected, false otherwise
618 bool ReadnPixelsTest::verifyError(GLint error, GLint expectedError, const char* method)
620 if (error != expectedError)
622 m_testCtx.getLog() << tcu::TestLog::Message << "Test failed! " << method << " throws unexpected error ["
623 << error << "]." << tcu::TestLog::EndMessage;