Lines Matching refs:got
107 void ApiCase::expectBoolean (EGLBoolean expected, EGLBoolean got)
109 if (expected != got)
111 m_testCtx.getLog() << TestLog::Message << "// ERROR expected: " << eglu::getBooleanStr(expected) << ", Got: " << eglu::getBooleanStr(got) << TestLog::EndMessage;
117 void ApiCase::expectNoContext (EGLContext got)
119 if (got != EGL_NO_CONTEXT)
124 eglDestroyContext(getDisplay(), got);
128 void ApiCase::expectNoSurface (EGLSurface got)
130 if (got != EGL_NO_SURFACE)
135 eglDestroySurface(getDisplay(), got);
139 void ApiCase::expectNoDisplay (EGLDisplay got)
141 if (got != EGL_NO_DISPLAY)
149 void ApiCase::expectNull (const void* got)
151 if (got != DE_NULL)