/frameworks/native/opengl/tools/glgen/specs/egl/ |
H A D | EGLExt.spec | 0 EGLBoolean eglPresentationTimeANDROID ( EGLDisplay dpy, EGLSurface sur, EGLnsecsANDROID time )
|
H A D | EGL14.spec | 3 EGLBoolean eglInitialize ( EGLDisplay dpy, EGLint *major, EGLint *minor ) 4 EGLBoolean eglTerminate ( EGLDisplay dpy ) 6 EGLBoolean eglGetConfigs ( EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *num_config ) 7 EGLBoolean eglChooseConfig ( EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config ) 8 EGLBoolean eglGetConfigAttrib ( EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value ) 12 EGLBoolean eglDestroySurface ( EGLDisplay dpy, EGLSurface surface ) 13 EGLBoolean eglQuerySurface ( EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value ) 14 EGLBoolean eglBindAPI ( EGLenum api ) 16 EGLBoolean eglWaitClient ( void ) 17 EGLBoolean eglReleaseThrea [all...] |
/frameworks/native/opengl/tests/angeles/include/GLES/ |
H A D | egltypes.h | 4 typedef int EGLBoolean; typedef
|
H A D | egl.h | 68 typedef int EGLBoolean; 197 GLAPI EGLBoolean APIENTRY eglInitialize (EGLDisplay dpy, EGLint *major, EGLint *minor); 198 GLAPI EGLBoolean APIENTRY eglTerminate (EGLDisplay dpy); 202 GLAPI EGLBoolean APIENTRY eglGetConfigs (EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *num_config); 203 GLAPI EGLBoolean APIENTRY eglChooseConfig (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint config_size, EGLint *num_config); 204 GLAPI EGLBoolean APIENTRY eglGetConfigAttrib (EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint *value); 209 GLAPI EGLBoolean APIENTRY eglDestroySurface (EGLDisplay dpy, EGLSurface surface); 210 GLAPI EGLBoolean APIENTRY eglQuerySurface (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value); 213 GLAPI EGLBoolean APIENTRY eglDestroyContext (EGLDisplay dpy, EGLContext ctx); 214 GLAPI EGLBoolean APIENTR [all...] |
/frameworks/native/opengl/include/EGL/ |
H A D | eglext.h | 71 EGLAPI EGLBoolean EGLAPIENTRY eglLockSurfaceKHR (EGLDisplay display, EGLSurface surface, const EGLint *attrib_list); 72 EGLAPI EGLBoolean EGLAPIENTRY eglUnlockSurfaceKHR (EGLDisplay display, EGLSurface surface); 74 typedef EGLBoolean (EGLAPIENTRYP PFNEGLLOCKSURFACEKHRPROC) (EGLDisplay display, EGLSurface surface, const EGLint *attrib_list); 75 typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNLOCKSURFACEKHRPROC) (EGLDisplay display, EGLSurface surface); 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, EGLint *value); 148 typedef EGLBoolean (EGLAPIENTRY [all...] |
H A 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 EGLAPIENTR [all...] |
/frameworks/native/opengl/tests/include/ |
H A D | glTestLib.h | 30 void glTestCheckEglError(const char* op, EGLBoolean returnVal = EGL_TRUE);
|
/frameworks/native/opengl/libs/EGL/ |
H A D | eglApi.cpp | 187 extern EGLBoolean egl_init_drivers(); 224 EGLBoolean eglInitialize(EGLDisplay dpy, EGLint *major, EGLint *minor) 231 EGLBoolean res = dp->initialize(major, minor); 236 EGLBoolean eglTerminate(EGLDisplay dpy) 247 EGLBoolean res = dp->terminate(); 256 EGLBoolean eglGetConfigs( EGLDisplay dpy, 269 EGLBoolean res = EGL_FALSE; 281 EGLBoolean eglChooseConfig( EGLDisplay dpy, const EGLint *attrib_list, 294 EGLBoolean res = EGL_FALSE; 340 EGLBoolean resA [all...] |
H A D | egl_display.h | 61 EGLBoolean initialize(EGLint *major, EGLint *minor); 62 EGLBoolean terminate(); 88 EGLBoolean makeCurrent(egl_context_t* c, egl_context_t* cur_c, 253 EGLBoolean validate_display_context(EGLDisplay dpy, EGLContext ctx); 254 EGLBoolean validate_display_surface(EGLDisplay dpy, EGLSurface surface);
|
H A D | egl_tls.h | 39 EGLBoolean logCallWithNoContext;
|
H A D | egl_display.cpp | 121 EGLBoolean egl_display_t::initialize(EGLint *major, EGLint *minor) { 228 EGLBoolean egl_display_t::terminate() { 248 EGLBoolean res = EGL_FALSE; 315 EGLBoolean egl_display_t::makeCurrent(egl_context_t* c, egl_context_t* cur_c, 319 EGLBoolean result;
|
H A D | egl.cpp | 300 static EGLBoolean egl_init_drivers_locked() { 324 EGLBoolean egl_init_drivers() { 325 EGLBoolean res;
|
/frameworks/base/core/jni/ |
H A D | android_opengl_EGL14.cpp | 153 /* EGLBoolean eglInitialize ( EGLDisplay dpy, EGLint *major, EGLint *minor ) */ 160 EGLBoolean _returnValue = (EGLBoolean) 0; 236 /* EGLBoolean eglTerminate ( EGLDisplay dpy ) */ 240 EGLBoolean _returnValue = (EGLBoolean) 0; 259 /* EGLBoolean eglGetConfigs ( EGLDisplay dpy, EGLConfig *configs, EGLint config_size, EGLint *num_config ) */ 266 EGLBoolean _returnValue = (EGLBoolean) 0; 337 /* EGLBoolean eglChooseConfi [all...] |
H A D | android_opengl_EGLExt.cpp | 134 /* EGLBoolean eglPresentationTimeANDROID ( EGLDisplay dpy, EGLSurface sur, EGLnsecsANDROID time ) */ 138 EGLBoolean _returnValue = (EGLBoolean) 0;
|
/frameworks/native/opengl/libagl/ |
H A D | egl.cpp | 54 EGLBoolean EGLAPI eglSetSwapRectangleANDROID(EGLDisplay dpy, EGLSurface draw, 106 static EGLBoolean is_valid(EGLDisplay dpy) { 157 virtual EGLBoolean bindDrawSurface(ogles_context_t* gl) = 0; 158 virtual EGLBoolean bindReadSurface(ogles_context_t* gl) = 0; 159 virtual EGLBoolean connect() { return EGL_TRUE; } 168 virtual EGLBoolean swapBuffers(); 169 virtual EGLBoolean setSwapRectangle(EGLint l, EGLint t, EGLint w, EGLint h); 193 EGLBoolean egl_surface_t::swapBuffers() { 208 EGLBoolean egl_surface_t::setSwapRectangle( 226 virtual EGLBoolean swapBuffer [all...] |
/frameworks/native/opengl/tests/EGLTest/ |
H A D | EGL_test.cpp | 50 EGLBoolean success = eglTerminate(mEglDisplay); 60 EGLBoolean success; 127 EGLBoolean success;
|
/frameworks/native/opengl/tests/gl_perf/ |
H A D | gl2_perf.cpp | 35 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { 60 EGLBoolean returnValue;
|
/frameworks/native/opengl/tests/lib/ |
H A D | glTestLib.cpp | 48 void glTestCheckEglError(const char* op, EGLBoolean returnVal)
|
/frameworks/native/services/surfaceflinger/ |
H A D | DisplayDevice.cpp | 234 EGLBoolean success = eglSwapBuffers(mDisplay, mSurface); 266 EGLBoolean DisplayDevice::makeCurrent(EGLDisplay dpy, EGLContext ctx) const { 267 EGLBoolean result = EGL_TRUE;
|
H A D | DisplayDevice.h | 143 EGLBoolean makeCurrent(EGLDisplay dpy, EGLContext ctx) const;
|
/frameworks/rs/driver/ |
H A D | rsdGL.cpp | 52 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { 128 EGLBoolean returnVal = eglGetConfigAttrib(dpy, config, names[j].attribute, &value); 252 EGLBoolean ret; 423 EGLBoolean ret;
|
/frameworks/native/opengl/tests/gl2_basic/ |
H A D | gl2_basic.cpp | 47 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { 262 EGLBoolean returnValue;
|
/frameworks/native/opengl/tests/gl_yuvtex/ |
H A D | gl_yuvtex.cpp | 49 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { 225 EGLBoolean returnValue;
|
/frameworks/native/opengl/tests/gl2_copyTexImage/ |
H A D | gl2_copyTexImage.cpp | 47 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { 366 EGLBoolean returnValue;
|
/frameworks/native/opengl/tests/gl2_yuvtex/ |
H A D | gl2_yuvtex.cpp | 49 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { 335 EGLBoolean returnValue;
|