/frameworks/native/opengl/tools/glgen/specs/egl/ |
D | checks.spec | 3 …nfig nullAllowed configs check configs config_size check num_config 1 sentinel attrib_list EGL_NONE 5 //STUB function: //eglCreateWindowSurface nullAllowed attrib_list sentinel attrib_list EGL_NONE 6 eglCreatePbufferSurface nullAllowed attrib_list sentinel attrib_list EGL_NONE 7 //unsupported: eglCreatePixmapSurface nullAllowed attrib_list sentinel attrib_list EGL_NONE 11 //STUB function: eglCreatePbufferFromClientBuffer nullAllowed attrib_list sentinel attrib_list EGL_… 12 eglCreateContext sentinel attrib_list EGL_NONE 14 //unsupported: eglCreatePlatformPixmapSurface nullAllowed attrib_list sentinel attrib_list EGL_NONE
|
D | EGL14.spec | 7 EGLBoolean eglChooseConfig ( EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *configs, EGLint … 9 …dowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list ) 10 EGLSurface eglCreatePbufferSurface ( EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list ) 11 …Surface ( EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list ) 18 …Display dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list ) 23 …teContext ( EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list )
|
/frameworks/base/opengl/java/com/google/android/gles_jni/ |
D | EGLImpl.java | 41 …public native boolean eglChooseConfig(EGLDisplay display, int[] attrib_list, EGLConfig[] confi… in eglChooseConfig() argument 62 …lCreateContext(EGLDisplay display, EGLConfig config, EGLContext share_context, int[] attrib_list) { in eglCreateContext() argument 63 long eglContextId = _eglCreateContext(display, config, share_context, attrib_list); in eglCreateContext() 70 …ublic EGLSurface eglCreatePbufferSurface(EGLDisplay display, EGLConfig config, int[] attrib_list) { in eglCreatePbufferSurface() argument 71 long eglSurfaceId = _eglCreatePbufferSurface(display, config, attrib_list); in eglCreatePbufferSurface() 78 …reatePixmapSurface(EGLDisplay display, EGLConfig config, Object native_pixmap, int[] attrib_list) { in eglCreatePixmapSurface() argument 80 _eglCreatePixmapSurface(sur, display, config, native_pixmap, attrib_list); in eglCreatePixmapSurface() 87 …reateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_list) { in eglCreateWindowSurface() argument 101 eglSurfaceId = _eglCreateWindowSurface(display, config, sur, attrib_list); in eglCreateWindowSurface() 104 native_window, attrib_list); in eglCreateWindowSurface() [all …]
|
/frameworks/base/core/jni/ |
D | com_google_android_gles_jni_EGLImpl.cpp | 86 static bool validAttribList(JNIEnv *_env, jintArray attrib_list) { in validAttribList() argument 87 if (attrib_list == NULL) { in validAttribList() 90 jsize len = _env->GetArrayLength(attrib_list); in validAttribList() 95 _env->GetIntArrayRegion(attrib_list, len-1, 1, &item); in validAttribList() 99 static jint* beginNativeAttribList(JNIEnv *_env, jintArray attrib_list) { in beginNativeAttribList() argument 100 if (attrib_list != NULL) { in beginNativeAttribList() 101 return _env->GetIntArrayElements(attrib_list, (jboolean *)0); in beginNativeAttribList() 107 static void endNativeAttributeList(JNIEnv *_env, jintArray attrib_list, jint* attrib_base) { in endNativeAttributeList() argument 108 if (attrib_list != NULL) { in endNativeAttributeList() 109 _env->ReleaseIntArrayElements(attrib_list, attrib_base, 0); in endNativeAttributeList() [all …]
|
D | android_opengl_EGL14.cpp | 355 EGLint *attrib_list = (EGLint *) 0; in android_eglChooseConfig() local 377 attrib_list = attrib_list_base + attrib_listOffset; in android_eglChooseConfig() 380 if (attrib_list[i] == EGL_NONE){ in android_eglChooseConfig() 434 (EGLint *)attrib_list, in android_eglChooseConfig() 532 EGLint *attrib_list = (EGLint *) 0; in android_eglCreateWindowSurface() local 545 attrib_list = attrib_list_base + offset; in android_eglCreateWindowSurface() 548 if (*((EGLint*)(attrib_list + i)) == EGL_NONE){ in android_eglCreateWindowSurface() 578 (EGLint *)attrib_list in android_eglCreateWindowSurface() 606 EGLint *attrib_list = (EGLint *) 0; in android_eglCreateWindowSurfaceTexture() local 642 attrib_list = attrib_list_base + offset; in android_eglCreateWindowSurfaceTexture() [all …]
|
D | android_opengl_EGL15.cpp | 206 WrappedEGLAttribs attrib_list; in android_eglCreateSync() local 223 attrib_list.init(attrib_list_base + offset, _remaining); in android_eglCreateSync() 228 attrib_list.attribs in android_eglCreateSync() 338 WrappedEGLAttribs attrib_list; in android_eglGetPlatformDisplay() local 355 attrib_list.init(attrib_list_base + offset, _remaining); in android_eglGetPlatformDisplay() 360 attrib_list.attribs in android_eglGetPlatformDisplay() 391 WrappedEGLAttribs attrib_list; in android_eglCreatePlatformWindowSurface() local 415 attrib_list.init(attrib_list_base + offset, _attrib_listRemaining); in android_eglCreatePlatformWindowSurface() 425 attrib_list.attribs in android_eglCreatePlatformWindowSurface() 480 WrappedEGLAttribs attrib_list; in android_eglCreateImage() local [all …]
|
/frameworks/native/opengl/libs/EGL/ |
D | eglApi.cpp | 55 const EGLAttrib* attrib_list) { in eglGetPlatformDisplay() argument 66 return cnx->platform.eglGetPlatformDisplay(platform, display, attrib_list); in eglGetPlatformDisplay() 91 EGLBoolean eglChooseConfig(EGLDisplay dpy, const EGLint* attrib_list, EGLConfig* configs, in eglChooseConfig() argument 96 return cnx->platform.eglChooseConfig(dpy, attrib_list, configs, config_size, num_config); in eglChooseConfig() 107 const EGLint* attrib_list) { in eglCreateWindowSurface() argument 111 return cnx->platform.eglCreateWindowSurface(dpy, config, window, attrib_list); in eglCreateWindowSurface() 115 const EGLAttrib* attrib_list) { in eglCreatePlatformWindowSurface() argument 119 return cnx->platform.eglCreatePlatformWindowSurface(dpy, config, native_window, attrib_list); in eglCreatePlatformWindowSurface() 123 const EGLint* attrib_list) { in eglCreatePixmapSurface() argument 127 return cnx->platform.eglCreatePixmapSurface(dpy, config, pixmap, attrib_list); in eglCreatePixmapSurface() [all …]
|
D | egl_platform_entries.cpp | 251 const EGLAttrib* attrib_list) { in eglGetPlatformDisplayTmpl() argument 261 EGLDisplay dpy = egl_display_t::getFromNativeDisplay(display, attrib_list); in eglGetPlatformDisplayTmpl() 270 const EGLAttrib* attrib_list) { in eglGetPlatformDisplayImpl() argument 272 attrib_list); in eglGetPlatformDisplayImpl() 325 EGLBoolean eglChooseConfigImpl(EGLDisplay dpy, const EGLint* attrib_list, EGLConfig* configs, in eglChooseConfigImpl() argument 339 if (!attrib_list || !base::GetBoolProperty("debug.egl.force_msaa", false)) in eglChooseConfigImpl() 340 return cnx->egl.eglChooseConfig(dp->disp.dpy, attrib_list, configs, config_size, in eglChooseConfigImpl() 345 EGLint attrib = attrib_list[0]; in eglChooseConfigImpl() 355 attrib = attrib_list[attribCount]; in eglChooseConfigImpl() 358 attribRendererable = &attrib_list[attribCount]; in eglChooseConfigImpl() [all …]
|
D | egl_display.cpp | 127 const EGLAttrib* attrib_list) { in getFromNativeDisplay() argument 130 return getPlatformDisplay(disp, attrib_list); in getFromNativeDisplay() 134 const EGLAttrib* attrib_list, EGLint* error) { in getPlatformDisplayAngle() argument 140 if (attrib_list) { in getPlatformDisplayAngle() 141 for (const EGLAttrib* attr = attrib_list; *attr != EGL_NONE; attr += 2) { in getPlatformDisplayAngle() 184 const EGLAttrib* attrib_list) { in getPlatformDisplay() argument 196 dpy = getPlatformDisplayAngle(display, cnx, attrib_list, &error); in getPlatformDisplay() 206 attrib_list); in getPlatformDisplay() 213 if (attrib_list) { in getPlatformDisplay()
|
/frameworks/native/opengl/tools/glgen/stubs/egl/ |
D | eglCreateWindowSurface.java | 7 int[] attrib_list, in _eglCreateWindowSurface() argument 15 int[] attrib_list, in _eglCreateWindowSurfaceTexture() argument 22 int[] attrib_list, in eglCreateWindowSurface() argument 38 surface = _eglCreateWindowSurface(dpy, config, sur, attrib_list, offset); in eglCreateWindowSurface() 41 win, attrib_list, offset); in eglCreateWindowSurface()
|
D | eglCreateWindowSurface.cpp | 14 EGLint *attrib_list = (EGLint *) 0; in android_eglCreateWindowSurface() local 27 attrib_list = attrib_list_base + offset; in android_eglCreateWindowSurface() 30 if (*((EGLint*)(attrib_list + i)) == EGL_NONE){ in android_eglCreateWindowSurface() 60 (EGLint *)attrib_list in android_eglCreateWindowSurface() 88 EGLint *attrib_list = (EGLint *) 0; in android_eglCreateWindowSurfaceTexture() local 124 attrib_list = attrib_list_base + offset; in android_eglCreateWindowSurfaceTexture() 127 if (*((EGLint*)(attrib_list + i)) == EGL_NONE){ in android_eglCreateWindowSurfaceTexture() 143 (EGLint *)attrib_list in android_eglCreateWindowSurfaceTexture()
|
D | eglCreatePbufferFromClientBuffer.cpp | 14 EGLint *attrib_list = (EGLint *) 0; in android_eglCreatePbufferFromClientBuffer() local 26 attrib_list = attrib_list_base + offset; in android_eglCreatePbufferFromClientBuffer() 29 if (attrib_list[i] == EGL_NONE){ in android_eglCreatePbufferFromClientBuffer() 47 (EGLint *)attrib_list in android_eglCreatePbufferFromClientBuffer()
|
D | eglGetPlatformDisplay.cpp | 11 WrappedEGLAttribs attrib_list; in android_eglGetPlatformDisplay() local 28 attrib_list.init(attrib_list_base + offset, _remaining); in android_eglGetPlatformDisplay() 33 attrib_list.attribs in android_eglGetPlatformDisplay()
|
D | eglCreateImage.cpp | 13 WrappedEGLAttribs attrib_list; in android_eglCreateImage() local 30 attrib_list.init(attrib_list_base + offset, _remaining); in android_eglCreateImage() 37 attrib_list.attribs in android_eglCreateImage()
|
D | eglCreatePbufferFromClientBuffer.java | 8 int[] attrib_list, in eglCreatePbufferFromClientBuffer() argument 20 int[] attrib_list, in eglCreatePbufferFromClientBuffer() argument
|
D | eglCreatePlatformWindowSurface.cpp | 17 WrappedEGLAttribs attrib_list; in android_eglCreatePlatformWindowSurface() local 41 attrib_list.init(attrib_list_base + offset, _attrib_listRemaining); in android_eglCreatePlatformWindowSurface() 51 attrib_list.attribs in android_eglCreatePlatformWindowSurface()
|
D | eglCreateSync.cpp | 12 WrappedEGLAttribs attrib_list; in android_eglCreateSync() local 29 attrib_list.init(attrib_list_base + offset, _remaining); in android_eglCreateSync() 34 attrib_list.attribs in android_eglCreateSync()
|
/frameworks/base/opengl/java/android/opengl/ |
D | EGL14.java | 210 int[] attrib_list, in eglChooseConfig() argument 235 int[] attrib_list, in _eglCreateWindowSurface() argument 243 int[] attrib_list, in _eglCreateWindowSurfaceTexture() argument 250 int[] attrib_list, in eglCreateWindowSurface() argument 266 surface = _eglCreateWindowSurface(dpy, config, sur, attrib_list, offset); in eglCreateWindowSurface() 269 win, attrib_list, offset); in eglCreateWindowSurface() 284 int[] attrib_list, in eglCreatePbufferSurface() argument 295 int[] attrib_list, in eglCreatePixmapSurface() argument 344 int[] attrib_list, in eglCreatePbufferFromClientBuffer() argument 356 int[] attrib_list, in eglCreatePbufferFromClientBuffer() argument [all …]
|
D | EGL15.java | 84 long[] attrib_list, in eglCreateSync() argument 122 long[] attrib_list, in eglGetPlatformDisplay() argument 132 long[] attrib_list, in eglCreatePlatformWindowSurface() argument 142 long[] attrib_list, in eglCreatePlatformPixmapSurface() argument 161 long[] attrib_list, in eglCreateImage() argument
|
D | EGLLogWrapper.java | 47 public boolean eglChooseConfig(EGLDisplay display, int[] attrib_list, in eglChooseConfig() argument 51 arg("attrib_list", attrib_list); in eglChooseConfig() 55 boolean result = mEgl10.eglChooseConfig(display, attrib_list, configs, in eglChooseConfig() 79 EGLContext share_context, int[] attrib_list) { in eglCreateContext() argument 84 arg("attrib_list", attrib_list); in eglCreateContext() 88 share_context, attrib_list); in eglCreateContext() 95 EGLConfig config, int[] attrib_list) { in eglCreatePbufferSurface() argument 99 arg("attrib_list", attrib_list); in eglCreatePbufferSurface() 103 attrib_list); in eglCreatePbufferSurface() 110 EGLConfig config, Object native_pixmap, int[] attrib_list) { in eglCreatePixmapSurface() argument [all …]
|
/frameworks/native/opengl/include/EGL/ |
D | eglext.h | 63 …IENTRYP PFNEGLCREATESYNC64KHRPROC) (EGLDisplay dpy, EGLenum type, const EGLAttribKHR *attrib_list); 65 …KHR EGLAPIENTRY eglCreateSync64KHR (EGLDisplay dpy, EGLenum type, const EGLAttribKHR *attrib_list); 126 …IENTRYP PFNEGLDEBUGMESSAGECONTROLKHRPROC) (EGLDEBUGPROCKHR callback, const EGLAttrib *attrib_list); 130 …int EGLAPIENTRY eglDebugMessageControlKHR (EGLDEBUGPROCKHR callback, const EGLAttrib *attrib_list); 152 …R (EGLAPIENTRYP PFNEGLCREATESYNCKHRPROC) (EGLDisplay dpy, EGLenum type, const EGLint *attrib_list); 157 … EGLSyncKHR EGLAPIENTRY eglCreateSyncKHR (EGLDisplay dpy, EGLenum type, const EGLint *attrib_list); 208 …EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list); 211 …EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list); 248 …PIENTRYP PFNEGLLOCKSURFACEKHRPROC) (EGLDisplay dpy, EGLSurface surface, const EGLint *attrib_list); 251 …lean EGLAPIENTRY eglLockSurfaceKHR (EGLDisplay dpy, EGLSurface surface, const EGLint *attrib_list); [all …]
|
D | egl.h | 121 EGLAPI EGLBoolean EGLAPIENTRY eglChooseConfig (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig… 123 …ateContext (EGLDisplay dpy, EGLConfig config, EGLContext share_context, const EGLint *attrib_list); 124 … EGLAPIENTRY eglCreatePbufferSurface (EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list); 125 …pSurface (EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list); 126 …ndowSurface (EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list); 204 …Display dpy, EGLenum buftype, EGLClientBuffer buffer, EGLConfig config, const EGLint *attrib_list); 287 …API EGLSync EGLAPIENTRY eglCreateSync (EGLDisplay dpy, EGLenum type, const EGLAttrib *attrib_list); 291 …Display dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const EGLAttrib *attrib_list); 293 …ENTRY eglGetPlatformDisplay (EGLenum platform, void *native_display, const EGLAttrib *attrib_list); 294 …indowSurface (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLAttrib *attrib_list); [all …]
|
D | eglext_angle.h | 118 …EAMPRODUCERD3DTEXTUREANGLEPROC)(EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); 119 …EXTUREANGLEPROC)(EGLDisplay dpy, EGLStreamKHR stream, void *texture, const EGLAttrib *attrib_list); 121 …teStreamProducerD3DTextureANGLE(EGLDisplay dpy, EGLStreamKHR stream, const EGLAttrib *attrib_list); 122 …tD3DTextureANGLE(EGLDisplay dpy, EGLStreamKHR stream, void *texture, const EGLAttrib *attrib_list); 148 …NEGLCREATEDEVICEANGLEPROC) (EGLint device_type, void *native_device, const EGLAttrib *attrib_list); 151 …IENTRY eglCreateDeviceANGLE(EGLint device_type, void *native_device, const EGLAttrib *attrib_list);
|
/frameworks/base/opengl/java/javax/microedition/khronos/egl/ |
D | EGL10.java | 98 …boolean eglChooseConfig(EGLDisplay display, int[] attrib_list, EGLConfig[] configs, int config… in eglChooseConfig() argument 100 …glCreateContext(EGLDisplay display, EGLConfig config, EGLContext share_context, int[] attrib_list); in eglCreateContext() argument 101 EGLSurface eglCreatePbufferSurface(EGLDisplay display, EGLConfig config, int[] attrib_list); in eglCreatePbufferSurface() argument 103 …CreatePixmapSurface(EGLDisplay display, EGLConfig config, Object native_pixmap, int[] attrib_list); in eglCreatePixmapSurface() argument 104 …CreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_list); in eglCreateWindowSurface() argument
|
/frameworks/native/opengl/tests/angeles/include/GLES/ |
D | egl.h | 203 GLAPI EGLBoolean APIENTRY eglChooseConfig (EGLDisplay dpy, const EGLint *attrib_list, EGLConfig *co… 206 …ndowSurface (EGLDisplay dpy, EGLConfig config, NativeWindowType window, const EGLint *attrib_list); 207 …xmapSurface (EGLDisplay dpy, EGLConfig config, NativePixmapType pixmap, const EGLint *attrib_list); 208 …ace APIENTRY eglCreatePbufferSurface (EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list); 212 …CreateContext (EGLDisplay dpy, EGLConfig config, EGLContext share_list, const EGLint *attrib_list);
|