/frameworks/native/opengl/libs/ |
D | platform_entries.in | 3 EGL_ENTRY(EGLBoolean, eglInitialize, EGLDisplay, EGLint*, EGLint*) 4 EGL_ENTRY(EGLBoolean, eglTerminate, EGLDisplay) 5 EGL_ENTRY(EGLBoolean, eglGetConfigs, EGLDisplay, EGLConfig*, EGLint, EGLint*) 6 EGL_ENTRY(EGLBoolean, eglChooseConfig, EGLDisplay, const EGLint*, EGLConfig*, EGLint, EGLint*) 7 EGL_ENTRY(EGLBoolean, eglGetConfigAttrib, EGLDisplay, EGLConfig, EGLint, EGLint*) 13 EGL_ENTRY(EGLBoolean, eglDestroySurface, EGLDisplay, EGLSurface) 14 EGL_ENTRY(EGLBoolean, eglQuerySurface, EGLDisplay, EGLSurface, EGLint, EGLint*) 17 EGL_ENTRY(EGLBoolean, eglDestroyContext, EGLDisplay, EGLContext) 18 EGL_ENTRY(EGLBoolean, eglMakeCurrent, EGLDisplay, EGLSurface, EGLSurface, EGLContext) 19 EGL_ENTRY(EGLBoolean, eglQueryContext, EGLDisplay, EGLContext, EGLint, EGLint*) [all …]
|
/frameworks/native/opengl/libs/EGL/ |
D | egl_entries.in | 2 EGL_ENTRY(EGLBoolean, eglInitialize, EGLDisplay, EGLint*, EGLint*) 3 EGL_ENTRY(EGLBoolean, eglTerminate, EGLDisplay) 4 EGL_ENTRY(EGLBoolean, eglGetConfigs, EGLDisplay, EGLConfig*, EGLint, EGLint*) 5 EGL_ENTRY(EGLBoolean, eglChooseConfig, EGLDisplay, const EGLint *, EGLConfig *, EGLint, EGLint *) 7 EGL_ENTRY(EGLBoolean, eglGetConfigAttrib, EGLDisplay, EGLConfig, EGLint, EGLint *) 11 EGL_ENTRY(EGLBoolean, eglDestroySurface, EGLDisplay, EGLSurface) 12 EGL_ENTRY(EGLBoolean, eglQuerySurface, EGLDisplay, EGLSurface, EGLint, EGLint *) 14 EGL_ENTRY(EGLBoolean, eglDestroyContext, EGLDisplay, EGLContext) 15 EGL_ENTRY(EGLBoolean, eglMakeCurrent, EGLDisplay, EGLSurface, EGLSurface, EGLContext) 19 EGL_ENTRY(EGLBoolean, eglQueryContext, EGLDisplay, EGLContext, EGLint, EGLint *) [all …]
|
D | eglApi.cpp | 32 extern EGLBoolean egl_init_drivers(); 69 EGLBoolean eglInitialize(EGLDisplay dpy, EGLint* major, EGLint* minor) { in eglInitialize() 76 EGLBoolean eglTerminate(EGLDisplay dpy) { in eglTerminate() 83 EGLBoolean eglGetConfigs(EGLDisplay dpy, EGLConfig* configs, EGLint config_size, in eglGetConfigs() 91 EGLBoolean eglChooseConfig(EGLDisplay dpy, const EGLint* attrib_list, EGLConfig* configs, in eglChooseConfig() 99 EGLBoolean eglGetConfigAttrib(EGLDisplay dpy, EGLConfig config, EGLint attribute, EGLint* value) { in eglGetConfigAttrib() 145 EGLBoolean eglDestroySurface(EGLDisplay dpy, EGLSurface surface) { in eglDestroySurface() 152 EGLBoolean eglQuerySurface(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint* value) { in eglQuerySurface() 175 EGLBoolean eglDestroyContext(EGLDisplay dpy, EGLContext ctx) { in eglDestroyContext() 182 EGLBoolean eglMakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx) { in eglMakeCurrent() [all …]
|
D | egl_platform_entries.cpp | 239 extern EGLBoolean egl_init_drivers(); 281 EGLBoolean eglInitializeImpl(EGLDisplay dpy, EGLint* major, EGLint* minor) { in eglInitializeImpl() 283 if (!dp) return setError(EGL_BAD_DISPLAY, (EGLBoolean)EGL_FALSE); in eglInitializeImpl() 285 EGLBoolean res = dp->initialize(major, minor); in eglInitializeImpl() 290 EGLBoolean eglTerminateImpl(EGLDisplay dpy) { in eglTerminateImpl() 296 if (!dp) return setError(EGL_BAD_DISPLAY, (EGLBoolean)EGL_FALSE); in eglTerminateImpl() 298 EGLBoolean res = dp->terminate(); in eglTerminateImpl() 307 EGLBoolean eglGetConfigsImpl(EGLDisplay dpy, EGLConfig* configs, EGLint config_size, in eglGetConfigsImpl() 313 return setError(EGL_BAD_PARAMETER, (EGLBoolean)EGL_FALSE); in eglGetConfigsImpl() 316 EGLBoolean res = EGL_FALSE; in eglGetConfigsImpl() [all …]
|
D | egl_display.h | 61 EGLBoolean initialize(EGLint* major, EGLint* minor); 62 EGLBoolean terminate(); 74 EGLBoolean makeCurrent(egl_context_t* c, egl_context_t* cur_c, EGLSurface draw, EGLSurface read, 134 EGLBoolean validate_display_context(EGLDisplay dpy, EGLContext ctx); 135 EGLBoolean validate_display_surface(EGLDisplay dpy, EGLSurface surface);
|
D | egl_object.h | 135 EGLBoolean setSmpte2086Attribute(EGLint attribute, EGLint value); 136 EGLBoolean setCta8613Attribute(EGLint attribute, EGLint value); 137 EGLBoolean getColorSpaceAttribute(EGLint attribute, EGLint* value) const; 138 EGLBoolean getSmpte2086Attribute(EGLint attribute, EGLint* value) const; 139 EGLBoolean getCta8613Attribute(EGLint attribute, EGLint* value) const; 140 EGLBoolean getSmpte2086Metadata(android_smpte2086_metadata& smpte2086) const; 141 EGLBoolean getCta8613Metadata(android_cta861_3_metadata& cta861_3) const;
|
D | egl_object.cpp | 97 EGLBoolean egl_surface_t::setSmpte2086Attribute(EGLint attribute, EGLint value) { in setSmpte2086Attribute() 143 EGLBoolean egl_surface_t::setCta8613Attribute(EGLint attribute, EGLint value) { in setCta8613Attribute() 157 EGLBoolean egl_surface_t::getSmpte2086Metadata(android_smpte2086_metadata& metadata) const { in getSmpte2086Metadata() 201 EGLBoolean egl_surface_t::getCta8613Metadata(android_cta861_3_metadata& metadata) const { in getCta8613Metadata() 219 EGLBoolean egl_surface_t::getColorSpaceAttribute(EGLint attribute, EGLint* value) const { in getColorSpaceAttribute() 227 EGLBoolean egl_surface_t::getSmpte2086Attribute(EGLint attribute, EGLint* value) const { in getSmpte2086Attribute() 273 EGLBoolean egl_surface_t::getCta8613Attribute(EGLint attribute, EGLint* value) const { in getCta8613Attribute()
|
D | egl.cpp | 125 static EGLBoolean egl_init_drivers_locked() { in egl_init_drivers_locked() 155 EGLBoolean egl_init_drivers() { in egl_init_drivers() 156 EGLBoolean res; in egl_init_drivers()
|
/frameworks/native/opengl/tools/glgen/specs/egl/ |
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_conf… 7 EGLBoolean eglChooseConfig ( EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint … 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 eglReleaseThread ( void ) [all …]
|
D | EGL15.spec | 3 // EGLBoolean eglGetSyncAttrib ( EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib *value ) 4 EGLBoolean eglDestroySync ( EGLDisplay dpy, EGLSync sync )
|
D | EGLExt.spec | 1 EGLBoolean eglPresentationTimeANDROID ( EGLDisplay dpy, EGLSurface sur, EGLnsecsANDROID time )
|
/frameworks/native/opengl/include/EGL/ |
D | eglext.h | 127 typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDEBUGKHRPROC) (EGLint attribute, EGLAttrib *value); 131 EGLAPI EGLBoolean EGLAPIENTRY eglQueryDebugKHR (EGLint attribute, EGLAttrib *value); 139 typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDISPLAYATTRIBKHRPROC) (EGLDisplay dpy, EGLint name, EGL… 141 EGLAPI EGLBoolean EGLAPIENTRY eglQueryDisplayAttribKHR (EGLDisplay dpy, EGLint name, EGLAttrib *val… 153 typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYSYNCKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync); 155 typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETSYNCATTRIBKHRPROC) (EGLDisplay dpy, EGLSyncKHR sync, EGLi… 158 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySyncKHR (EGLDisplay dpy, EGLSyncKHR sync); 160 EGLAPI EGLBoolean EGLAPIENTRY eglGetSyncAttribKHR (EGLDisplay dpy, EGLSyncKHR sync, EGLint attribut… 209 typedef EGLBoolean (EGLAPIENTRYP PFNEGLDESTROYIMAGEKHRPROC) (EGLDisplay dpy, EGLImageKHR image); 212 EGLAPI EGLBoolean EGLAPIENTRY eglDestroyImageKHR (EGLDisplay dpy, EGLImageKHR image); [all …]
|
D | egl.h | 54 typedef unsigned int EGLBoolean; typedef 121 EGLAPI EGLBoolean EGLAPIENTRY eglChooseConfig (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig… 122 EGLAPI EGLBoolean EGLAPIENTRY eglCopyBuffers (EGLDisplay dpy, EGLSurface surface, EGLNativePixmapTy… 127 EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext (EGLDisplay dpy, EGLContext ctx); 128 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySurface (EGLDisplay dpy, EGLSurface surface); 129 EGLAPI EGLBoolean EGLAPIENTRY eglGetConfigAttrib (EGLDisplay dpy, EGLConfig config, EGLint attribut… 130 EGLAPI EGLBoolean EGLAPIENTRY eglGetConfigs (EGLDisplay dpy, EGLConfig *configs, EGLint config_size… 136 EGLAPI EGLBoolean EGLAPIENTRY eglInitialize (EGLDisplay dpy, EGLint *major, EGLint *minor); 137 EGLAPI EGLBoolean EGLAPIENTRY eglMakeCurrent (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGL… 138 EGLAPI EGLBoolean EGLAPIENTRY eglQueryContext (EGLDisplay dpy, EGLContext ctx, EGLint attribute, EG… [all …]
|
D | eglext_angle.h | 118 typedef EGLBoolean(EGLAPIENTRYP PFNEGLCREATESTREAMPRODUCERD3DTEXTUREANGLEPROC)(EGLDisplay dpy, EGLS… 119 typedef EGLBoolean(EGLAPIENTRYP PFNEGLSTREAMPOSTD3DTEXTUREANGLEPROC)(EGLDisplay dpy, EGLStreamKHR s… 121 EGLAPI EGLBoolean EGLAPIENTRY eglCreateStreamProducerD3DTextureANGLE(EGLDisplay dpy, EGLStreamKHR s… 122 EGLAPI EGLBoolean EGLAPIENTRY eglStreamPostD3DTextureANGLE(EGLDisplay dpy, EGLStreamKHR stream, voi… 149 typedef EGLBoolean(EGLAPIENTRYP PFNEGLRELEASEDEVICEANGLEPROC) (EGLDeviceEXT device); 152 EGLAPI EGLBoolean EGLAPIENTRY eglReleaseDeviceANGLE(EGLDeviceEXT device); 202 typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDISPLAYATTRIBANGLEPROC) (EGLDisplay dpy, EGLint attribu… 205 EGLAPI EGLBoolean EGLAPIENTRY eglQueryDisplayAttribANGLE(EGLDisplay dpy, EGLint attribute, EGLAttri…
|
/frameworks/native/opengl/tests/angeles/include/GLES/ |
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, EG… 203 GLAPI EGLBoolean APIENTRY eglChooseConfig (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *co… 204 GLAPI EGLBoolean APIENTRY eglGetConfigAttrib (EGLDisplay dpy, EGLConfig config, EGLint attribute, E… 209 GLAPI EGLBoolean APIENTRY eglDestroySurface (EGLDisplay dpy, EGLSurface surface); 210 GLAPI EGLBoolean APIENTRY eglQuerySurface (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EG… 213 GLAPI EGLBoolean APIENTRY eglDestroyContext (EGLDisplay dpy, EGLContext ctx); 214 GLAPI EGLBoolean APIENTRY eglMakeCurrent (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLCont… [all …]
|
D | egltypes.h | 4 typedef int EGLBoolean; typedef
|
/frameworks/base/core/jni/ |
D | android_opengl_EGL14.cpp | 177 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglInitialize() 250 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglTerminate() 276 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglGetConfigs() 351 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglChooseConfig() 471 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglGetConfigAttrib() 748 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglDestroySurface() 766 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglQuerySurface() 819 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglBindAPI() 839 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglWaitClient() 848 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglReleaseThread() [all …]
|
D | android_opengl_EGL15.cpp | 251 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglGetSyncAttrib() 301 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglDestroySync() 457 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglWaitSync() 523 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglDestroyImage()
|
D | android_opengl_EGLExt.cpp | 89 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglPresentationTimeANDROID()
|
D | com_google_android_gles_jni_EGLImpl.cpp | 63 static inline jboolean EglBoolToJBool(EGLBoolean eglBool) { in EglBoolToJBool() 122 EGLBoolean success = eglInitialize(dpy, NULL, NULL); in jni_eglInitialize() 145 EGLBoolean success = EGL_FALSE; in jni_eglQueryContext() 165 EGLBoolean success = EGL_FALSE; in jni_eglQuerySurface() 194 EGLBoolean success = EGL_FALSE; in jni_eglChooseConfig() 321 EGLBoolean success = EGL_FALSE; in jni_eglGetConfigAttrib() 338 EGLBoolean success = EGL_FALSE; in jni_eglGetConfigs()
|
/frameworks/native/opengl/specs/ |
D | EGL_ANDROID_get_frame_timestamps.txt | 68 EGLBoolean eglGetNextFrameIdANDROID(EGLDisplay dpy, EGLSurface surface, 71 EGLBoolean eglGetCompositorTimingANDROID(EGLDisplay dpy, 75 EGLBoolean eglGetFrameTimestampsANDROID(EGLDisplay dpy, EGLSurface surface, 79 EGLBoolean eglQueryTimestampSupportedANDROID(EGLDisplay dpy, 116 EGLBoolean eglGetNextFrameIdANDROID(EGLDisplay dpy, EGLSurface surface, 126 EGLBoolean eglGetCompositorTimingANDROID(EGLDisplay dpy, 149 EGLBoolean eglGetFrameTimestampsANDROID(EGLDisplay dpy, 211 EGLBoolean eglGetCompositorTimingSupportedANDROID(EGLDisplay dpy, 216 EGLBoolean eglGetFrameTimestampsSupportedANDROID(EGLDisplay dpy,
|
/frameworks/native/opengl/tests/EGLTest/ |
D | EGL_test.cpp | 51 #define EGL_UNSIGNED_TRUE static_cast<EGLBoolean>(EGL_TRUE) 91 EGLBoolean success = eglTerminate(mEglDisplay); in TearDown() 101 EGLBoolean success; in TEST_F() 171 EGLBoolean success; in TEST_F() 211 EGLBoolean success; in TEST_F() 297 EGLBoolean success; in TEST_F() 356 EGLBoolean success; in TEST_F() 442 EGLBoolean success; in get8BitConfig() 519 EGLBoolean success; in checkSurfaceSmpteMetadata() 567 EGLBoolean success; in TEST_F() [all …]
|
/frameworks/native/opengl/tests/gl_perf/ |
D | gl2_perf.cpp | 35 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { in checkEglError() 53 EGLBoolean returnValue; in main()
|
/frameworks/native/opengl/tools/glgen/stubs/egl/ |
D | eglCreateSync.cpp | 56 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglGetSyncAttrib()
|
/frameworks/native/opengl/tests/lib/include/ |
D | glTestLib.h | 30 void glTestCheckEglError(const char* op, EGLBoolean returnVal = EGL_TRUE);
|