/frameworks/base/opengl/java/com/google/android/gles_jni/ |
D | EGLImpl.java | 78 …e eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_… in eglCreateWindowSurface() argument 80 if (native_window instanceof SurfaceView) { in eglCreateWindowSurface() 81 SurfaceView surfaceView = (SurfaceView)native_window; in eglCreateWindowSurface() 83 } else if (native_window instanceof SurfaceHolder) { in eglCreateWindowSurface() 84 SurfaceHolder holder = (SurfaceHolder)native_window; in eglCreateWindowSurface() 86 } else if (native_window instanceof Surface) { in eglCreateWindowSurface() 87 sur = (Surface) native_window; in eglCreateWindowSurface() 93 } else if (native_window instanceof SurfaceTexture) { in eglCreateWindowSurface() 95 native_window, attrib_list); in eglCreateWindowSurface() 151 … _eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_… in _eglCreateWindowSurface() argument [all …]
|
/frameworks/native/opengl/tools/glgen/stubs/egl/ |
D | eglCreatePlatformWindowSurface.cpp | 14 void *native_window = (void *) 0; in android_eglCreatePlatformWindowSurface() local 25 …native_window = (void *)getPointer(_env, native_window_buf, (jarray*)&_array, &_native_windowRemai… in android_eglCreatePlatformWindowSurface() 43 if (native_window == NULL) { in android_eglCreatePlatformWindowSurface() 45 native_window = (void *) (_native_windowBase + _bufferOffset); in android_eglCreatePlatformWindowSurface() 50 (void *)native_window, in android_eglCreatePlatformWindowSurface() 60 releasePointer(_env, _array, native_window, _exception ? JNI_FALSE : JNI_TRUE); in android_eglCreatePlatformWindowSurface()
|
D | eglCreatePlatformWindowSurface.java | 6 java.nio.Buffer native_window, in eglCreatePlatformWindowSurface() argument
|
/frameworks/base/core/jni/ |
D | android_opengl_EGL15.cpp | 388 void *native_window = (void *) 0; in android_eglCreatePlatformWindowSurface() local 399 …native_window = (void *)getPointer(_env, native_window_buf, (jarray*)&_array, &_native_windowRemai… in android_eglCreatePlatformWindowSurface() 417 if (native_window == NULL) { in android_eglCreatePlatformWindowSurface() 419 native_window = (void *) (_native_windowBase + _bufferOffset); in android_eglCreatePlatformWindowSurface() 424 (void *)native_window, in android_eglCreatePlatformWindowSurface() 434 releasePointer(_env, _array, native_window, _exception ? JNI_FALSE : JNI_TRUE); in android_eglCreatePlatformWindowSurface()
|
D | com_google_android_gles_jni_EGLImpl.cpp | 262 jobject config, jobject native_window, jintArray attrib_list) { in jni_eglCreateWindowSurface() argument 271 if (native_window == NULL) { in jni_eglCreateWindowSurface() 278 window = android_view_Surface_getNativeWindow(_env, native_window); in jni_eglCreateWindowSurface() 289 jobject config, jobject native_window, jintArray attrib_list) { in jni_eglCreateWindowSurfaceTexture() argument 298 if (native_window == 0) { in jni_eglCreateWindowSurfaceTexture() 305 sp<IGraphicBufferProducer> producer(SurfaceTexture_getProducer(_env, native_window)); in jni_eglCreateWindowSurfaceTexture()
|
/frameworks/base/opengl/java/android/opengl/ |
D | EGL15.java | 131 java.nio.Buffer native_window, in eglCreatePlatformWindowSurface() argument
|
D | EGLLogWrapper.java | 126 EGLConfig config, Object native_window, int[] attrib_list) { in eglCreateWindowSurface() argument 130 arg("native_window", native_window); in eglCreateWindowSurface() 135 native_window, attrib_list); in eglCreateWindowSurface()
|
/frameworks/base/opengl/java/javax/microedition/khronos/egl/ |
D | EGL10.java | 104 …EGLSurface eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int… in eglCreateWindowSurface() argument
|
/frameworks/native/opengl/libs/EGL/ |
D | eglApi.cpp | 115 EGLSurface eglCreatePlatformWindowSurface(EGLDisplay dpy, EGLConfig config, void* native_window, in eglCreatePlatformWindowSurface() argument 120 return cnx->platform.eglCreatePlatformWindowSurface(dpy, config, native_window, attrib_list); in eglCreatePlatformWindowSurface()
|
D | egl_platform_entries.cpp | 792 EGLDisplay dpy, EGLConfig config, void* native_window, const EGLAttrib* attrib_list); 806 EGLSurface eglCreatePlatformWindowSurfaceImpl(EGLDisplay dpy, EGLConfig config, void* native_window, in eglCreatePlatformWindowSurfaceImpl() argument 814 dp, cnx, config, static_cast<ANativeWindow*>(native_window), attrib_list, in eglCreatePlatformWindowSurfaceImpl() 827 dp, cnx, config, static_cast<ANativeWindow*>(native_window), in eglCreatePlatformWindowSurfaceImpl() 833 native_window), in eglCreatePlatformWindowSurfaceImpl()
|
/frameworks/native/opengl/include/EGL/ |
D | egl.h | 294 …lCreatePlatformWindowSurface (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLAttr…
|
D | eglext.h | 851 …LATFORMWINDOWSURFACEEXTPROC) (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLint … 855 …eatePlatformWindowSurfaceEXT (EGLDisplay dpy, EGLConfig config, void *native_window, const EGLint …
|