Home | History | Annotate | Download | only in EGL

Lines Matching refs:EGLBoolean

267 extern EGLBoolean egl_init_drivers();
303 EGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor)
308 if (!dp) return setError(EGL_BAD_DISPLAY, (EGLBoolean)EGL_FALSE);
310 EGLBoolean res = dp->initialize(major, minor);
315 EGLBoolean eglTerminate(EGLDisplay dpy)
324 if (!dp) return setError(EGL_BAD_DISPLAY, (EGLBoolean)EGL_FALSE);
326 EGLBoolean res = dp->terminate();
335 EGLBoolean eglGetConfigs( EGLDisplay dpy,
345 return setError(EGL_BAD_PARAMETER, (EGLBoolean)EGL_FALSE);
348 EGLBoolean res = EGL_FALSE;
360 EGLBoolean eglChooseConfig( EGLDisplay dpy, const EGLint *attrib_list,
370 return setError(EGL_BAD_PARAMETER, (EGLBoolean)EGL_FALSE);
373 EGLBoolean res = EGL_FALSE;
421 EGLBoolean resAA = cnx->egl.eglChooseConfig(
439 EGLBoolean eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config,
545 static EGLBoolean processAttributes(egl_display_ptr dp, NativeWindowType window,
669 EGLBoolean sendSurfaceMetadata(egl_surface_t* s) {
848 EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface surface)
857 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
860 EGLBoolean result = s->cnx->egl.eglDestroySurface(dp->disp.dpy, s->surface);
867 EGLBoolean eglQuerySurface( EGLDisplay dpy, EGLSurface surface,
877 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
950 EGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext ctx)
960 return setError(EGL_BAD_CONTEXT, (EGLBoolean)EGL_FALSE);
963 EGLBoolean result = c->cnx->egl.eglDestroyContext(dp->disp.dpy, c->context);
970 EGLBoolean eglMakeCurrent( EGLDisplay dpy, EGLSurface draw,
976 if (!dp) return setError(EGL_BAD_DISPLAY, (EGLBoolean)EGL_FALSE);
983 if (!dp->isReady()) return setError(EGL_NOT_INITIALIZED, (EGLBoolean)EGL_FALSE);
994 return setError(EGL_BAD_CONTEXT, (EGLBoolean)EGL_FALSE);
1017 return setError(EGL_BAD_MATCH, (EGLBoolean)EGL_FALSE);
1028 if (!_d.get()) return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
1035 if (!_r.get()) return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
1041 EGLBoolean result = dp->makeCurrent(c, cur_c,
1060 EGLBoolean restore_result = EGL_FALSE;
1091 result = setError(cnx->egl.eglGetError(), (EGLBoolean)EGL_FALSE);
1097 EGLBoolean eglQueryContext( EGLDisplay dpy, EGLContext ctx,
1106 if (!_c.get()) return setError(EGL_BAD_CONTEXT, (EGLBoolean)EGL_FALSE);
1161 EGLBoolean eglWaitGL(void)
1167 return setError(EGL_BAD_CONTEXT, (EGLBoolean)EGL_FALSE);
1172 EGLBoolean eglWaitNative(EGLint engine)
1178 return setError(EGL_BAD_CONTEXT, (EGLBoolean)EGL_FALSE);
1366 EGLBoolean eglSwapBuffersWithDamageKHR(EGLDisplay dpy, EGLSurface draw,
1377 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
1400 return setError(EGL_BAD_NATIVE_WINDOW, (EGLBoolean)EGL_FALSE);
1431 EGLBoolean eglSwapBuffers(EGLDisplay dpy, EGLSurface surface)
1436 EGLBoolean eglCopyBuffers( EGLDisplay dpy, EGLSurface surface,
1446 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
1510 EGLBoolean eglSurfaceAttrib(
1520 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
1529 return (err == 0) ? EGL_TRUE : setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
1534 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
1537 return (err == 0) ? EGL_TRUE : setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
1548 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
1551 EGLBoolean eglBindTexImage(
1561 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
1568 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
1571 EGLBoolean eglReleaseTexImage(
1581 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
1588 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
1591 EGLBoolean eglSwapInterval(EGLDisplay dpy, EGLint interval)
1598 EGLBoolean res = EGL_TRUE;
1612 EGLBoolean eglWaitClient(void)
1618 return setError(EGL_BAD_CONTEXT, (EGLBoolean)EGL_FALSE);
1620 EGLBoolean res;
1629 EGLBoolean eglBindAPI(EGLenum api)
1634 return setError(EGL_BAD_PARAMETER, (EGLBoolean)EGL_FALSE);
1638 EGLBoolean res = EGL_TRUE;
1651 return setError(EGL_BAD_PARAMETER, (EGLBoolean)EGL_FALSE);
1663 EGLBoolean eglReleaseThread(void)
1699 EGLBoolean eglLockSurfaceKHR(EGLDisplay dpy, EGLSurface surface,
1709 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
1716 return setError(EGL_BAD_DISPLAY, (EGLBoolean)EGL_FALSE);
1719 EGLBoolean eglUnlockSurfaceKHR(EGLDisplay dpy, EGLSurface surface)
1728 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
1734 return setError(EGL_BAD_DISPLAY, (EGLBoolean)EGL_FALSE);
1777 EGLBoolean eglDestroyImageKHR(EGLDisplay dpy, EGLImageKHR img)
1784 EGLBoolean result = EGL_FALSE;
1812 EGLBoolean eglDestroySyncKHR(EGLDisplay dpy, EGLSyncKHR sync)
1819 EGLBoolean result = EGL_FALSE;
1827 EGLBoolean eglSignalSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode) {
1833 EGLBoolean result = EGL_FALSE;
1859 EGLBoolean eglGetSyncAttribKHR(EGLDisplay dpy, EGLSyncKHR sync,
1867 EGLBoolean result = EGL_FALSE;
1892 EGLBoolean eglDestroyStreamKHR(EGLDisplay dpy, EGLStreamKHR stream)
1899 EGLBoolean result = EGL_FALSE;
1908 EGLBoolean eglStreamAttribKHR(EGLDisplay dpy, EGLStreamKHR stream,
1916 EGLBoolean result = EGL_FALSE;
1925 EGLBoolean eglQueryStreamKHR(EGLDisplay dpy, EGLStreamKHR stream,
1933 EGLBoolean result = EGL_FALSE;
1942 EGLBoolean eglQueryStreamu64KHR(EGLDisplay dpy, EGLStreamKHR stream,
1950 EGLBoolean result = EGL_FALSE;
1959 EGLBoolean eglQueryStreamTimeKHR(EGLDisplay dpy, EGLStreamKHR stream,
1967 EGLBoolean result = EGL_FALSE;
1997 EGLBoolean eglStreamConsumerGLTextureExternalKHR(EGLDisplay dpy,
2005 EGLBoolean result = EGL_FALSE;
2014 EGLBoolean eglStreamConsumerAcquireKHR(EGLDisplay dpy,
2022 EGLBoolean result = EGL_FALSE;
2031 EGLBoolean eglStreamConsumerReleaseKHR(EGLDisplay dpy,
2039 EGLBoolean result = EGL_FALSE;
2117 EGLBoolean eglPresentationTimeANDROID(EGLDisplay dpy, EGLSurface surface,
2194 EGLBoolean eglSetDamageRegionKHR(EGLDisplay dpy, EGLSurface surface,
2220 EGLBoolean eglGetNextFrameIdANDROID(EGLDisplay dpy, EGLSurface surface,
2226 return setError(EGL_BAD_DISPLAY, (EGLBoolean)EGL_FALSE);
2231 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
2237 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
2247 return setError(EGL_NOT_INITIALIZED, (EGLBoolean)EGL_FALSE);
2254 EGLBoolean eglGetCompositorTimingANDROID(EGLDisplay dpy, EGLSurface surface,
2261 return setError(EGL_BAD_DISPLAY, (EGLBoolean)EGL_FALSE);
2266 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
2272 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
2291 return setError(EGL_BAD_PARAMETER, (EGLBoolean)EGL_FALSE);
2302 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
2307 return setError(EGL_NOT_INITIALIZED, (EGLBoolean)EGL_FALSE);
2311 EGLBoolean eglGetCompositorTimingSupportedANDROID(
2318 return setError(EGL_BAD_DISPLAY, (EGLBoolean)EGL_FALSE);
2323 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
2330 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
2343 EGLBoolean eglGetFrameTimestampsANDROID(EGLDisplay dpy, EGLSurface surface,
2351 return setError(EGL_BAD_DISPLAY, (EGLBoolean)EGL_FALSE);
2356 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
2362 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
2405 return setError(EGL_BAD_PARAMETER, (EGLBoolean)EGL_FALSE);
2418 return setError(EGL_BAD_ACCESS, (EGLBoolean)EGL_FALSE);
2420 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
2422 return setError(EGL_BAD_PARAMETER, (EGLBoolean)EGL_FALSE);
2427 return setError(EGL_NOT_INITIALIZED, (EGLBoolean)EGL_FALSE);
2431 EGLBoolean eglGetFrameTimestampSupportedANDROID(
2438 return setError(EGL_BAD_DISPLAY, (EGLBoolean)EGL_FALSE);
2443 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);
2450 return setError(EGL_BAD_SURFACE, (EGLBoolean)EGL_FALSE);