Home
last modified time | relevance | path

Searched refs:native_window (Results 1 – 6 of 6) sorted by relevance

/aosp14/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DEGLImpl.java87 …e eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_… in eglCreateWindowSurface() argument
89 if (native_window instanceof SurfaceView) { in eglCreateWindowSurface()
90 SurfaceView surfaceView = (SurfaceView)native_window; in eglCreateWindowSurface()
92 } else if (native_window instanceof SurfaceHolder) { in eglCreateWindowSurface()
93 SurfaceHolder holder = (SurfaceHolder)native_window; in eglCreateWindowSurface()
95 } else if (native_window instanceof Surface) { in eglCreateWindowSurface()
96 sur = (Surface) native_window; in eglCreateWindowSurface()
102 } else if (native_window instanceof SurfaceTexture) { in eglCreateWindowSurface()
104 native_window, attrib_list); in eglCreateWindowSurface()
160 … _eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int[] attrib_… in _eglCreateWindowSurface() argument
[all …]
/aosp14/frameworks/base/core/jni/
H A Dandroid_opengl_EGL15.cpp388 void *native_window = (void *) 0; in android_eglCreatePlatformWindowSurface() local
399native_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()
H A Dcom_google_android_gles_jni_EGLImpl.cpp258 jobject config, jobject native_window, jintArray attrib_list) { in jni_eglCreateWindowSurface() argument
267 if (native_window == NULL) { in jni_eglCreateWindowSurface()
274 window = android_view_Surface_getNativeWindow(_env, native_window); in jni_eglCreateWindowSurface()
285 jobject config, jobject native_window, jintArray attrib_list) { in jni_eglCreateWindowSurfaceTexture() argument
294 if (native_window == 0) { in jni_eglCreateWindowSurfaceTexture()
301 sp<IGraphicBufferProducer> producer(SurfaceTexture_getProducer(_env, native_window)); in jni_eglCreateWindowSurfaceTexture()
/aosp14/frameworks/base/opengl/java/android/opengl/
H A DEGL15.java131 java.nio.Buffer native_window, in eglCreatePlatformWindowSurface() argument
H A DEGLLogWrapper.java126 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()
/aosp14/frameworks/base/opengl/java/javax/microedition/khronos/egl/
H A DEGL10.java104 …EGLSurface eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int… in eglCreateWindowSurface() argument