Searched refs:EGLBoolean (Results 1 – 7 of 7) sorted by relevance
/device/generic/goldfish-opengl/tests/gles_android_wrapper/ |
D | egl_proc.h | 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) (); [all …]
|
D | egl.cpp | 238 EGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor) in eglInitialize() 243 EGLBoolean eglTerminate(EGLDisplay dpy) in eglTerminate() 253 EGLBoolean eglGetConfigs(EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *num_config) in eglGetConfigs() 288 EGLBoolean eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint co… in eglChooseConfig() 290 EGLBoolean res; in eglChooseConfig() 313 EGLBoolean eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value) in eglGetConfigAttrib() 359 EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface surface) in eglDestroySurface() 361 EGLBoolean res = getDispatch()->eglDestroySurface(dpy, surface); in eglDestroySurface() 371 EGLBoolean eglQuerySurface(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value) in eglQuerySurface() 373 EGLBoolean res = getDispatch()->eglQuerySurface(dpy, surface, attribute, value); in eglQuerySurface() [all …]
|
/device/generic/goldfish-opengl/system/include/EGL/ |
D | eglext.h | 71 EGLAPI EGLBoolean EGLAPIENTRY eglLockSurfaceKHR (EGLDisplay display, EGLSurface surface, const EGLi… 72 EGLAPI EGLBoolean EGLAPIENTRY eglUnlockSurfaceKHR (EGLDisplay display, EGLSurface surface); 74 typedef EGLBoolean (EGLAPIENTRYP PFNEGLLOCKSURFACEKHRPROC) (EGLDisplay display, EGLSurface surface,… 75 typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNLOCKSURFACEKHRPROC) (EGLDisplay display, EGLSurface surfac… 85 EGLAPI EGLBoolean EGLAPIENTRY eglDestroyImageKHR (EGLDisplay dpy, EGLImageKHR image); 88 typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYIMAGEKHRPROC) (EGLDisplay dpy, EGLImageKHR image); 142 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySyncKHR(EGLDisplay dpy, EGLSyncKHR sync); 144 EGLAPI EGLBoolean EGLAPIENTRY eglSignalSyncKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLenum mode); 145 EGLAPI EGLBoolean EGLAPIENTRY eglGetSyncAttribKHR(EGLDisplay dpy, EGLSyncKHR sync, EGLint attribute… 148 typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync); [all …]
|
D | egl.h | 44 typedef unsigned int EGLBoolean; typedef 252 EGLAPI EGLBoolean EGLAPIENTRY eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor); 253 EGLAPI EGLBoolean EGLAPIENTRY eglTerminate(EGLDisplay dpy); 257 EGLAPI EGLBoolean EGLAPIENTRY eglGetConfigs(EGLDisplay dpy, EGLConfig *configs, 259 EGLAPI EGLBoolean EGLAPIENTRY eglChooseConfig(EGLDisplay dpy, const EGLint *attrib_list, 262 EGLAPI EGLBoolean EGLAPIENTRY eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config, 273 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySurface(EGLDisplay dpy, EGLSurface surface); 274 EGLAPI EGLBoolean EGLAPIENTRY eglQuerySurface(EGLDisplay dpy, EGLSurface surface, 277 EGLAPI EGLBoolean EGLAPIENTRY eglBindAPI(EGLenum api); 280 EGLAPI EGLBoolean EGLAPIENTRY eglWaitClient(void); [all …]
|
/device/generic/goldfish-opengl/system/egl/ |
D | eglDisplay.h | 58 EGLBoolean getConfigAttrib(EGLConfig config, EGLint attrib, EGLint * value); 59 EGLBoolean setConfigAttrib(EGLConfig config, EGLint attrib, EGLint value); 60 EGLBoolean getConfigGLPixelFormat(EGLConfig config, GLenum * format); 61 EGLBoolean getConfigNativePixelFormat(EGLConfig config, PixelFormat * format); 74 EGLBoolean getAttribValue(EGLConfig config, EGLint attribIdxi, EGLint * value); 75 EGLBoolean setAttribValue(EGLConfig config, EGLint attribIdxi, EGLint value);
|
D | egl.cpp | 260 virtual EGLBoolean swapBuffers() = 0; 334 virtual EGLBoolean swapBuffers(); 340 EGLBoolean init(); 358 EGLBoolean egl_window_surface_t::init() in init() 473 EGLBoolean egl_window_surface_t::swapBuffers() in swapBuffers() 560 virtual EGLBoolean swapBuffers() { return EGL_TRUE; } in swapBuffers() 567 EGLBoolean init(GLenum format); 590 EGLBoolean egl_pbuffer_surface_t::init(GLenum pixelFormat) in init() 704 EGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor) in eglInitialize() 718 EGLBoolean eglTerminate(EGLDisplay dpy) in eglTerminate() [all …]
|
D | eglDisplay.cpp | 422 EGLBoolean eglDisplay::getAttribValue(EGLConfig config, EGLint attribIdx, EGLint * value) in getAttribValue() 436 EGLBoolean eglDisplay::getConfigAttrib(EGLConfig config, EGLint attrib, EGLint * value) in getConfigAttrib() 457 EGLBoolean ret = getAttribValue(config, m_attribs.valueFor(attrib), value); in getConfigAttrib() 475 EGLBoolean eglDisplay::setAttribValue(EGLConfig config, EGLint attribIdx, EGLint value) in setAttribValue() 486 EGLBoolean eglDisplay::setConfigAttrib(EGLConfig config, EGLint attrib, EGLint value) in setConfigAttrib() 490 EGLBoolean ret = setAttribValue(config, m_attribs.valueFor(attrib), value); in setConfigAttrib() 496 EGLBoolean eglDisplay::getConfigNativePixelFormat(EGLConfig config, PixelFormat * format) in getConfigNativePixelFormat() 520 EGLBoolean eglDisplay::getConfigGLPixelFormat(EGLConfig config, GLenum * format) in getConfigGLPixelFormat()
|