/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 | 36 …public native boolean eglChooseConfig(EGLDisplay display, int[] attrib_list, EGLConfig[] confi… in eglChooseConfig() argument 53 …lCreateContext(EGLDisplay display, EGLConfig config, EGLContext share_context, int[] attrib_list) { in eglCreateContext() argument 54 long eglContextId = _eglCreateContext(display, config, share_context, attrib_list); in eglCreateContext() 61 …ublic EGLSurface eglCreatePbufferSurface(EGLDisplay display, EGLConfig config, int[] attrib_list) { in eglCreatePbufferSurface() argument 62 long eglSurfaceId = _eglCreatePbufferSurface(display, config, attrib_list); in eglCreatePbufferSurface() 69 …reatePixmapSurface(EGLDisplay display, EGLConfig config, Object native_pixmap, int[] attrib_list) { in eglCreatePixmapSurface() argument 71 _eglCreatePixmapSurface(sur, display, config, native_pixmap, attrib_list); in eglCreatePixmapSurface() 78 …reateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_list) { in eglCreateWindowSurface() argument 92 eglSurfaceId = _eglCreateWindowSurface(display, config, sur, attrib_list); in eglCreateWindowSurface() 95 native_window, attrib_list); in eglCreateWindowSurface() [all …]
|
/frameworks/base/core/jni/ |
D | com_google_android_gles_jni_EGLImpl.cpp | 90 static bool validAttribList(JNIEnv *_env, jintArray attrib_list) { in validAttribList() argument 91 if (attrib_list == NULL) { in validAttribList() 94 jsize len = _env->GetArrayLength(attrib_list); in validAttribList() 99 _env->GetIntArrayRegion(attrib_list, len-1, 1, &item); in validAttribList() 103 static jint* beginNativeAttribList(JNIEnv *_env, jintArray attrib_list) { in beginNativeAttribList() argument 104 if (attrib_list != NULL) { in beginNativeAttribList() 105 return _env->GetIntArrayElements(attrib_list, (jboolean *)0); in beginNativeAttribList() 111 static void endNativeAttributeList(JNIEnv *_env, jintArray attrib_list, jint* attrib_base) { in endNativeAttributeList() argument 112 if (attrib_list != NULL) { in endNativeAttributeList() 113 _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 | 56 const EGLAttrib* attrib_list) { in eglGetPlatformDisplay() argument 67 return cnx->platform.eglGetPlatformDisplay(platform, display, attrib_list); in eglGetPlatformDisplay() 92 EGLBoolean eglChooseConfig(EGLDisplay dpy, const EGLint* attrib_list, EGLConfig* configs, in eglChooseConfig() argument 97 return cnx->platform.eglChooseConfig(dpy, attrib_list, configs, config_size, num_config); in eglChooseConfig() 108 const EGLint* attrib_list) { in eglCreateWindowSurface() argument 112 return cnx->platform.eglCreateWindowSurface(dpy, config, window, attrib_list); in eglCreateWindowSurface() 116 const EGLAttrib* attrib_list) { in eglCreatePlatformWindowSurface() argument 120 return cnx->platform.eglCreatePlatformWindowSurface(dpy, config, native_window, attrib_list); in eglCreatePlatformWindowSurface() 124 const EGLint* attrib_list) { in eglCreatePixmapSurface() argument 128 return cnx->platform.eglCreatePixmapSurface(dpy, config, pixmap, attrib_list); in eglCreatePixmapSurface() [all …]
|
D | egl_platform_entries.cpp | 289 const EGLAttrib* attrib_list) { in eglGetPlatformDisplayTmpl() argument 299 EGLDisplay dpy = egl_display_t::getFromNativeDisplay(display, attrib_list); in eglGetPlatformDisplayTmpl() 308 const EGLAttrib* attrib_list) { in eglGetPlatformDisplayImpl() argument 310 attrib_list); in eglGetPlatformDisplayImpl() 368 EGLBoolean eglChooseConfigImpl( EGLDisplay dpy, const EGLint *attrib_list, in eglChooseConfigImpl() argument 384 if (attrib_list) { in eglChooseConfigImpl() 390 EGLint attrib = attrib_list[0]; in eglChooseConfigImpl() 400 attrib = attrib_list[attribCount]; in eglChooseConfigImpl() 403 attribRendererable = &attrib_list[attribCount]; in eglChooseConfigImpl() 406 attribCaveat = &attrib_list[attribCount]; in eglChooseConfigImpl() [all …]
|
D | egl_display.cpp | 129 const EGLAttrib* attrib_list) { in getFromNativeDisplay() argument 133 return sDisplay[uintptr_t(disp)].getPlatformDisplay(disp, attrib_list); in getFromNativeDisplay() 173 const EGLAttrib* attrib_list, EGLint* error) { in getPlatformDisplayAngle() argument 179 if (attrib_list) { in getPlatformDisplayAngle() 180 for (const EGLAttrib* attr = attrib_list; *attr != EGL_NONE; attr += 2) { in getPlatformDisplayAngle() 212 const EGLAttrib* attrib_list) { in getPlatformDisplay() argument 225 dpy = getPlatformDisplayAngle(display, cnx, attrib_list, &error); in getPlatformDisplay() 235 attrib_list); in getPlatformDisplay() 242 if (attrib_list) { in getPlatformDisplay()
|
/frameworks/base/opengl/java/android/opengl/ |
D | EGL14.java | 209 int[] attrib_list, in eglChooseConfig() argument 234 int[] attrib_list, in _eglCreateWindowSurface() argument 242 int[] attrib_list, in _eglCreateWindowSurfaceTexture() argument 249 int[] attrib_list, in eglCreateWindowSurface() argument 265 surface = _eglCreateWindowSurface(dpy, config, sur, attrib_list, offset); in eglCreateWindowSurface() 268 win, attrib_list, offset); in eglCreateWindowSurface() 283 int[] attrib_list, in eglCreatePbufferSurface() argument 294 int[] attrib_list, in eglCreatePixmapSurface() argument 343 int[] attrib_list, in eglCreatePbufferFromClientBuffer() argument 355 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/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()
|
/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/libs/hwui/debug/ |
D | nullegl.cpp | 78 EGLBoolean eglChooseConfig(EGLDisplay dpy, const EGLint* attrib_list, EGLConfig* configs, in eglChooseConfig() argument 86 const EGLint* attrib_list) { in eglCreateWindowSurface() argument 90 EGLSurface eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig config, const EGLint* attrib_list) { in eglCreatePbufferSurface() argument 117 const EGLint* attrib_list) { in eglCreateContext() argument 154 EGLClientBuffer buffer, const EGLint* attrib_list) { in eglCreateImageKHR() argument 158 EGLSyncKHR eglCreateSyncKHR(EGLDisplay dpy, EGLenum type, const EGLint* attrib_list) { in eglCreateSyncKHR() argument
|
/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);
|