Home | History | Annotate | Download | only in gles_android_wrapper

Lines Matching refs:EGLBoolean

25 typedef EGLBoolean (* eglInitialize_t) (EGLDisplay, EGLint*, EGLint*);
26 typedef EGLBoolean (* eglTerminate_t) (EGLDisplay);
28 typedef EGLBoolean (* eglGetConfigs_t) (EGLDisplay, EGLConfig*, EGLint, EGLint*);
29 typedef EGLBoolean (* eglChooseConfig_t) (EGLDisplay, const EGLint*, EGLConfig*, EGLint, EGLint*);
30 typedef EGLBoolean (* eglGetConfigAttrib_t) (EGLDisplay, EGLConfig, EGLint, EGLint*);
34 typedef EGLBoolean (* eglDestroySurface_t) (EGLDisplay, EGLSurface);
35 typedef EGLBoolean (* eglQuerySurface_t) (EGLDisplay, EGLSurface, EGLint, EGLint*);
36 typedef EGLBoolean (* eglBindAPI_t) (EGLenum);
38 typedef EGLBoolean (* eglWaitClient_t) ();
39 typedef EGLBoolean (* eglReleaseThread_t) ();
41 typedef EGLBoolean (* eglSurfaceAttrib_t) (EGLDisplay, EGLSurface, EGLint, EGLint);
42 typedef EGLBoolean (* eglBindTexImage_t) (EGLDisplay, EGLSurface, EGLint);
43 typedef EGLBoolean (* eglReleaseTexImage_t) (EGLDisplay, EGLSurface, EGLint);
44 typedef EGLBoolean (* eglSwapInterval_t) (EGLDisplay, EGLint);
46 typedef EGLBoolean (* eglDestroyContext_t) (EGLDisplay, EGLContext);
47 typedef EGLBoolean (* eglMakeCurrent_t) (EGLDisplay, EGLSurface, EGLSurface, EGLContext);
51 typedef EGLBoolean (* eglQueryContext_t) (EGLDisplay, EGLContext, EGLint, EGLint*);
52 typedef EGLBoolean (* eglWaitGL_t) ();
53 typedef EGLBoolean (* eglWaitNative_t) (EGLint);
54 typedef EGLBoolean (* eglSwapBuffers_t) (EGLDisplay, EGLSurface);
55 typedef EGLBoolean (* eglCopyBuffers_t) (EGLDisplay, EGLSurface, EGLNativePixmapType);
57 typedef EGLBoolean (* eglLockSurfaceKHR_t) (EGLDisplay, EGLSurface, const EGLint*);
58 typedef EGLBoolean (* eglUnlockSurfaceKHR_t) (EGLDisplay, EGLSurface);
60 typedef EGLBoolean (* eglDestroyImageKHR_t) (EGLDisplay, EGLImageKHR image);
62 typedef EGLBoolean (* eglDestroySyncKHR_t) (EGLDisplay, EGLSyncKHR sync);
64 typedef EGLBoolean (* eglSignalSyncKHR_t) (EGLDisplay, EGLSyncKHR, EGLenum);
65 typedef EGLBoolean (* eglGetSyncAttribKHR_t) (EGLDisplay, EGLSyncKHR, EGLint, EGLint*);
66 typedef EGLBoolean (* eglSetSwapRectangleANDROID_t) (EGLDisplay, EGLSurface, EGLint, EGLint, EGLint, EGLint);