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