Home | History | Annotate | Download | only in egl

Lines Matching refs:eglMakeCurrent

108 	//  * eglMakeCurrent()
825 TEGL_ADD_API_CASE(make_current, "eglMakeCurrent() negative tests",
832 expectFalse(eglMakeCurrent(EGL_NO_DISPLAY, DE_NULL, DE_NULL, DE_NULL));
835 expectFalse(eglMakeCurrent((EGLDisplay)-1, DE_NULL, DE_NULL, DE_NULL));
866 expectFalse(eglMakeCurrent(display, (EGLSurface)-1, (EGLSurface)-1, context));
869 expectFalse(eglMakeCurrent(display, surface, (EGLSurface)-1, context));
872 expectFalse(eglMakeCurrent(display, (EGLSurface)-1, surface, context));
882 expectFalse(eglMakeCurrent(display, surface, surface, (EGLContext)-1));
892 expectFalse(eglMakeCurrent(display, surface, EGL_NO_SURFACE, EGL_NO_CONTEXT));
895 expectFalse(eglMakeCurrent(display, EGL_NO_SURFACE, surface, EGL_NO_CONTEXT));
898 expectFalse(eglMakeCurrent(display, surface, surface, EGL_NO_CONTEXT));
952 expectTrue(eglMakeCurrent(display, surface, surface, context));
962 expectTrue(eglMakeCurrent(display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT));
1357 expectTrue(eglMakeCurrent(display, *surface, *surface, context));
1367 expectTrue(eglMakeCurrent(display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT));