Home
last modified time | relevance | path

Searched refs:EGLBoolean (Results 1 – 25 of 42) sorted by relevance

12

/frameworks/native/opengl/libs/
Dplatform_entries.in3 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/
Degl_entries.in2 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 …]
DeglApi.cpp32 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 …]
Degl_platform_entries.cpp236 extern EGLBoolean egl_init_drivers();
278 EGLBoolean eglInitializeImpl(EGLDisplay dpy, EGLint* major, EGLint* minor) { in eglInitializeImpl()
280 if (!dp) return setError(EGL_BAD_DISPLAY, (EGLBoolean)EGL_FALSE); in eglInitializeImpl()
282 EGLBoolean res = dp->initialize(major, minor); in eglInitializeImpl()
287 EGLBoolean eglTerminateImpl(EGLDisplay dpy) { in eglTerminateImpl()
293 if (!dp) return setError(EGL_BAD_DISPLAY, (EGLBoolean)EGL_FALSE); in eglTerminateImpl()
295 EGLBoolean res = dp->terminate(); in eglTerminateImpl()
304 EGLBoolean eglGetConfigsImpl(EGLDisplay dpy, EGLConfig* configs, EGLint config_size, in eglGetConfigsImpl()
310 return setError(EGL_BAD_PARAMETER, (EGLBoolean)EGL_FALSE); in eglGetConfigsImpl()
313 EGLBoolean res = EGL_FALSE; in eglGetConfigsImpl()
[all …]
Degl_display.h62 EGLBoolean initialize(EGLint* major, EGLint* minor);
63 EGLBoolean terminate();
75 EGLBoolean makeCurrent(egl_context_t* c, egl_context_t* cur_c, EGLSurface draw, EGLSurface read,
135 EGLBoolean validate_display_context(EGLDisplay dpy, EGLContext ctx);
136 EGLBoolean validate_display_surface(EGLDisplay dpy, EGLSurface surface);
Degl_object.h135 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;
Degl_object.cpp97 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()
Degl.cpp125 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()
Degl_display.cpp236 EGLBoolean egl_display_t::initialize(EGLint* major, EGLint* minor) { in initialize()
395 EGLBoolean egl_display_t::terminate() { in terminate()
415 EGLBoolean res = EGL_FALSE; in terminate()
490 EGLBoolean egl_display_t::makeCurrent(egl_context_t* c, egl_context_t* cur_c, EGLSurface draw, in makeCurrent()
493 EGLBoolean result; in makeCurrent()
/frameworks/native/opengl/tools/glgen/specs/egl/
DEGL14.spec3 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 …]
DEGL15.spec3 // EGLBoolean eglGetSyncAttrib ( EGLDisplay dpy, EGLSync sync, EGLint attribute, EGLAttrib *value )
4 EGLBoolean eglDestroySync ( EGLDisplay dpy, EGLSync sync )
DEGLExt.spec1 EGLBoolean eglPresentationTimeANDROID ( EGLDisplay dpy, EGLSurface sur, EGLnsecsANDROID time )
/frameworks/native/opengl/include/EGL/
Deglext.h127 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 …]
Degl.h54 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 …]
Deglext_angle.h118 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/
Degl.h68 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 …]
Degltypes.h4 typedef int EGLBoolean; typedef
/frameworks/base/core/jni/
Dandroid_opengl_EGL14.cpp176 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglInitialize()
249 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglTerminate()
275 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglGetConfigs()
350 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglChooseConfig()
470 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglGetConfigAttrib()
747 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglDestroySurface()
765 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglQuerySurface()
818 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglBindAPI()
838 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglWaitClient()
847 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglReleaseThread()
[all …]
Dandroid_opengl_EGL15.cpp250 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglGetSyncAttrib()
300 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglDestroySync()
456 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglWaitSync()
522 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglDestroyImage()
Dcom_google_android_gles_jni_EGLImpl.cpp63 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/
DEGL_ANDROID_get_frame_timestamps.txt68 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/
DEGL_test.cpp48 #define EGL_UNSIGNED_TRUE static_cast<EGLBoolean>(EGL_TRUE)
88 EGLBoolean success = eglTerminate(mEglDisplay); in TearDown()
98 EGLBoolean success; in TEST_F()
168 EGLBoolean success; in TEST_F()
208 EGLBoolean success; in TEST_F()
294 EGLBoolean success; in TEST_F()
348 EGLBoolean success; in TEST_F()
434 EGLBoolean success; in get8BitConfig()
511 EGLBoolean success; in checkSurfaceSmpteMetadata()
559 EGLBoolean success; in TEST_F()
[all …]
/frameworks/native/opengl/tests/gl_perf/
Dgl2_perf.cpp35 static void checkEglError(const char* op, EGLBoolean returnVal = EGL_TRUE) { in checkEglError()
53 EGLBoolean returnValue; in main()
/frameworks/native/opengl/tools/glgen/stubs/egl/
DeglCreateSync.cpp56 EGLBoolean _returnValue = (EGLBoolean) 0; in android_eglGetSyncAttrib()
/frameworks/native/opengl/tests/lib/include/
DglTestLib.h30 void glTestCheckEglError(const char* op, EGLBoolean returnVal = EGL_TRUE);

12