/frameworks/native/opengl/tools/glgen/specs/egl/ |
D | EGL14.spec | 9 EGLSurface eglCreateWindowSurface ( EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, cons… 10 EGLSurface eglCreatePbufferSurface ( EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list ) 11 EGLSurface eglCreatePixmapSurface ( EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, c… 12 EGLBoolean eglDestroySurface ( EGLDisplay dpy, EGLSurface surface ) 13 EGLBoolean eglQuerySurface ( EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value ) 18 EGLSurface eglCreatePbufferFromClientBuffer ( EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buff… 19 EGLBoolean eglSurfaceAttrib ( EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint value ) 20 EGLBoolean eglBindTexImage ( EGLDisplay dpy, EGLSurface surface, EGLint buffer ) 21 EGLBoolean eglReleaseTexImage ( EGLDisplay dpy, EGLSurface surface, EGLint buffer ) 25 EGLBoolean eglMakeCurrent ( EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ctx ) [all …]
|
/frameworks/native/opengl/libs/EGL/ |
D | egl_entries.in | 8 EGL_ENTRY(EGLSurface, eglCreateWindowSurface, EGLDisplay, EGLConfig, NativeWindowType, const EGLint… 9 EGL_ENTRY(EGLSurface, eglCreatePixmapSurface, EGLDisplay, EGLConfig, NativePixmapType, const EGLint… 10 EGL_ENTRY(EGLSurface, eglCreatePbufferSurface, EGLDisplay, EGLConfig, const EGLint *) 11 EGL_ENTRY(EGLBoolean, eglDestroySurface, EGLDisplay, EGLSurface) 12 EGL_ENTRY(EGLBoolean, eglQuerySurface, EGLDisplay, EGLSurface, EGLint, EGLint *) 15 EGL_ENTRY(EGLBoolean, eglMakeCurrent, EGLDisplay, EGLSurface, EGLSurface, EGLContext) 17 EGL_ENTRY(EGLSurface, eglGetCurrentSurface, EGLint) 22 EGL_ENTRY(EGLBoolean, eglSwapBuffers, EGLDisplay, EGLSurface) 23 EGL_ENTRY(EGLBoolean, eglCopyBuffers, EGLDisplay, EGLSurface, NativePixmapType) 30 EGL_ENTRY(EGLBoolean, eglSurfaceAttrib, EGLDisplay, EGLSurface, EGLint, EGLint) [all …]
|
D | egl_object.h | 130 typedef egl_object_t::LocalRef<egl_surface_t, EGLSurface> Ref; 133 EGLNativeWindowType win, EGLSurface surface, 136 EGLSurface surface; 152 void onMakeCurrent(EGLSurface draw, EGLSurface read); 157 EGLSurface read; 158 EGLSurface draw; 177 egl_surface_t* get_surface(EGLSurface surface) { in get_surface()
|
D | egl_display.h | 89 EGLSurface draw, EGLSurface read, EGLContext ctx, 90 EGLSurface impl_draw, EGLSurface impl_read, EGLContext impl_ctx); 256 EGLBoolean validate_display_surface(EGLDisplay dpy, EGLSurface surface);
|
D | egl_object.cpp | 65 EGLNativeWindowType win, EGLSurface surface, in egl_surface_t() 98 void egl_context_t::onMakeCurrent(EGLSurface draw, EGLSurface read) { in onMakeCurrent()
|
/frameworks/base/opengl/java/android/opengl/ |
D | EGL14.java | 35 public static EGLSurface EGL_NO_SURFACE = null; 228 private static native EGLSurface _eglCreateWindowSurface( in _eglCreateWindowSurface() 236 private static native EGLSurface _eglCreateWindowSurfaceTexture( in _eglCreateWindowSurfaceTexture() 244 public static EGLSurface eglCreateWindowSurface(EGLDisplay dpy, in eglCreateWindowSurface() 261 EGLSurface surface; in eglCreateWindowSurface() 278 public static native EGLSurface eglCreatePbufferSurface( in eglCreatePbufferSurface() 287 public static native EGLSurface eglCreatePixmapSurface( in eglCreatePixmapSurface() 299 EGLSurface surface in eglDestroySurface() 306 EGLSurface surface, in eglQuerySurface() 335 public static native EGLSurface eglCreatePbufferFromClientBuffer( in eglCreatePbufferFromClientBuffer() [all …]
|
D | EGLSurface.java | 24 public class EGLSurface extends EGLObjectHandle { class 25 private EGLSurface(long handle) { in EGLSurface() method in EGLSurface 32 if (!(o instanceof EGLSurface)) return false; in equals() 34 EGLSurface that = (EGLSurface) o; in equals()
|
D | EGLLogWrapper.java | 28 import javax.microedition.khronos.egl.EGLSurface; 64 public boolean eglCopyBuffers(EGLDisplay display, EGLSurface surface, in eglCopyBuffers() 94 public EGLSurface eglCreatePbufferSurface(EGLDisplay display, in eglCreatePbufferSurface() 102 EGLSurface result = mEgl10.eglCreatePbufferSurface(display, config, in eglCreatePbufferSurface() 109 public EGLSurface eglCreatePixmapSurface(EGLDisplay display, in eglCreatePixmapSurface() 118 EGLSurface result = mEgl10.eglCreatePixmapSurface(display, config, in eglCreatePixmapSurface() 125 public EGLSurface eglCreateWindowSurface(EGLDisplay display, in eglCreateWindowSurface() 134 EGLSurface result = mEgl10.eglCreateWindowSurface(display, config, in eglCreateWindowSurface() 153 public boolean eglDestroySurface(EGLDisplay display, EGLSurface surface) { in eglDestroySurface() 218 public EGLSurface eglGetCurrentSurface(int readdraw) { in eglGetCurrentSurface() [all …]
|
/frameworks/base/libs/hwui/renderthread/ |
D | EglManager.h | 41 EGLSurface createSurface(EGLNativeWindowType window); 42 void destroySurface(EGLSurface surface); 46 bool isCurrent(EGLSurface surface) { return mCurrentSurface == surface; } in isCurrent() 48 bool makeCurrent(EGLSurface surface); 49 void beginFrame(EGLSurface surface, EGLint* width, EGLint* height); 50 bool swapBuffers(EGLSurface surface); 54 bool setPreserveBuffer(EGLSurface surface, bool preserve); 74 EGLSurface mPBufferSurface; 79 EGLSurface mCurrentSurface;
|
D | EglManager.cpp | 29 EGLAPI void EGLAPIENTRY eglBeginFrame(EGLDisplay dpy, EGLSurface surface); 194 EGLSurface EglManager::createSurface(EGLNativeWindowType window) { in createSurface() 196 EGLSurface surface = eglCreateWindowSurface(mEglDisplay, mEglConfig, window, NULL); in createSurface() 203 void EglManager::destroySurface(EGLSurface surface) { in destroySurface() 233 bool EglManager::makeCurrent(EGLSurface surface) { in makeCurrent() 249 void EglManager::beginFrame(EGLSurface surface, EGLint* width, EGLint* height) { in beginFrame() 263 bool EglManager::swapBuffers(EGLSurface surface) { in swapBuffers() 287 bool EglManager::setPreserveBuffer(EGLSurface surface, bool preserve) { in setPreserveBuffer()
|
/frameworks/base/opengl/java/javax/microedition/khronos/egl/ |
D | EGL10.java | 95 EGLSurface EGL_NO_SURFACE = new com.google.android.gles_jni.EGLSurfaceImpl(0); 98 boolean eglCopyBuffers(EGLDisplay display, EGLSurface surface, Object native_pixmap); in eglCopyBuffers() 100 EGLSurface eglCreatePbufferSurface(EGLDisplay display, EGLConfig config, int[] attrib_list); in eglCreatePbufferSurface() 101 …EGLSurface eglCreatePixmapSurface(EGLDisplay display, EGLConfig config, Object native_pixmap, int… in eglCreatePixmapSurface() 102 …EGLSurface eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_window, int… in eglCreateWindowSurface() 104 boolean eglDestroySurface(EGLDisplay display, EGLSurface surface); in eglDestroySurface() 109 EGLSurface eglGetCurrentSurface(int readdraw); in eglGetCurrentSurface() 113 …boolean eglMakeCurrent(EGLDisplay display, EGLSurface draw, EGLSurface read, EGLContext contex… in eglMakeCurrent() 116 boolean eglQuerySurface(EGLDisplay display, EGLSurface surface, int attribute, int[] value); in eglQuerySurface() 119 boolean eglSwapBuffers(EGLDisplay display, EGLSurface surface); in eglSwapBuffers()
|
/frameworks/native/opengl/include/EGL/ |
D | egl.h | 49 typedef void *EGLSurface; typedef 71 #define EGL_NO_SURFACE ((EGLSurface)0) 265 EGLAPI EGLSurface EGLAPIENTRY eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, 268 EGLAPI EGLSurface EGLAPIENTRY eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig config, 270 EGLAPI EGLSurface EGLAPIENTRY eglCreatePixmapSurface(EGLDisplay dpy, EGLConfig config, 273 EGLAPI EGLBoolean EGLAPIENTRY eglDestroySurface(EGLDisplay dpy, EGLSurface surface); 274 EGLAPI EGLBoolean EGLAPIENTRY eglQuerySurface(EGLDisplay dpy, EGLSurface surface, 284 EGLAPI EGLSurface EGLAPIENTRY eglCreatePbufferFromClientBuffer( 288 EGLAPI EGLBoolean EGLAPIENTRY eglSurfaceAttrib(EGLDisplay dpy, EGLSurface surface, 290 EGLAPI EGLBoolean EGLAPIENTRY eglBindTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer); [all …]
|
D | eglext.h | 71 EGLAPI EGLBoolean EGLAPIENTRY eglLockSurfaceKHR (EGLDisplay display, EGLSurface surface, const EGLi… 72 EGLAPI EGLBoolean EGLAPIENTRY eglUnlockSurfaceKHR (EGLDisplay display, EGLSurface surface); 74 typedef EGLBoolean (EGLAPIENTRYP PFNEGLLOCKSURFACEKHRPROC) (EGLDisplay display, EGLSurface surface,… 75 typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNLOCKSURFACEKHRPROC) (EGLDisplay display, EGLSurface surfac… 254 EGLAPI EGLSurface EGLAPIENTRY eglCreatePixmapSurfaceHI(EGLDisplay dpy, EGLConfig config, struct EGL… 256 typedef EGLSurface (EGLAPIENTRYP PFNEGLCREATEPIXMAPSURFACEHIPROC) (EGLDisplay dpy, EGLConfig config… 290 EGLAPI EGLBoolean EGLAPIENTRY eglPostSubBufferNV (EGLDisplay dpy, EGLSurface surface, EGLint x, EGL… 292 typedef EGLBoolean (EGLAPIENTRYP PFNEGLPOSTSUBBUFFERNVPROC) (EGLDisplay dpy, EGLSurface surface, EG… 298 EGLAPI EGLBoolean eglQuerySurfacePointerANGLE(EGLDisplay dpy, EGLSurface surface, EGLint attribute,… 300 typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYSURFACEPOINTERANGLEPROC) (EGLDisplay dpy, EGLSurface su… [all …]
|
/frameworks/native/opengl/tests/angeles/include/GLES/ |
D | egl.h | 72 typedef void *EGLSurface; 81 #define EGL_NO_SURFACE ((EGLSurface)0) 206 GLAPI EGLSurface APIENTRY eglCreateWindowSurface (EGLDisplay dpy, EGLConfig config, NativeWindowTyp… 207 GLAPI EGLSurface APIENTRY eglCreatePixmapSurface (EGLDisplay dpy, EGLConfig config, NativePixmapTyp… 208 GLAPI EGLSurface APIENTRY eglCreatePbufferSurface (EGLDisplay dpy, EGLConfig config, const EGLint *… 209 GLAPI EGLBoolean APIENTRY eglDestroySurface (EGLDisplay dpy, EGLSurface surface); 210 GLAPI EGLBoolean APIENTRY eglQuerySurface (EGLDisplay dpy, EGLSurface surface, EGLint attribute, EG… 214 GLAPI EGLBoolean APIENTRY eglMakeCurrent (EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLCont… 216 GLAPI EGLSurface APIENTRY eglGetCurrentSurface (EGLint readdraw); 222 GLAPI EGLBoolean APIENTRY eglSwapBuffers (EGLDisplay dpy, EGLSurface draw); [all …]
|
D | egltypes.h | 8 typedef void *EGLSurface; typedef 20 #define EGL_NO_SURFACE ((EGLSurface)0)
|
/frameworks/native/opengl/tools/glgen/static/egl/ |
D | EGLSurface.java | 24 public class EGLSurface extends EGLObjectHandle { class 25 private EGLSurface(long handle) { in EGLSurface() method in EGLSurface 32 if (!(o instanceof EGLSurface)) return false; in equals() 34 EGLSurface that = (EGLSurface) o; in equals()
|
/frameworks/native/cmds/flatland/ |
D | GLHelper.h | 52 bool makeCurrent(EGLSurface surface); 55 sp<GLConsumer>* surfaceTexture, EGLSurface* surface, 59 sp<SurfaceControl>* surfaceControl, EGLSurface* surface); 61 void destroySurface(EGLSurface* surface); 63 bool swapBuffers(EGLSurface surface); 72 sp<GLConsumer>* surfaceTexture, EGLSurface* surface); 82 EGLSurface mDummySurface;
|
/frameworks/base/opengl/java/com/google/android/gles_jni/ |
D | EGLImpl.java | 33 …public native boolean eglQuerySurface(EGLDisplay display, EGLSurface surface, int attribute, i… in eglQuerySurface() 41 public native boolean eglDestroySurface(EGLDisplay display, EGLSurface surface); in eglDestroySurface() 42 …public native boolean eglMakeCurrent(EGLDisplay display, EGLSurface draw, EGLSurface read, EGL… in eglMakeCurrent() 44 public native boolean eglSwapBuffers(EGLDisplay display, EGLSurface surface); in eglSwapBuffers() 46 …public native boolean eglCopyBuffers(EGLDisplay display, EGLSurface surface, Object native_pix… in eglCopyBuffers() 61 …public EGLSurface eglCreatePbufferSurface(EGLDisplay display, EGLConfig config, int[] attrib_list)… in eglCreatePbufferSurface() 69 …public EGLSurface eglCreatePixmapSurface(EGLDisplay display, EGLConfig config, Object native_pixma… in eglCreatePixmapSurface() 78 …public EGLSurface eglCreateWindowSurface(EGLDisplay display, EGLConfig config, Object native_windo… in eglCreateWindowSurface() 138 public synchronized EGLSurface eglGetCurrentSurface(int readdraw) { in eglGetCurrentSurface() 150 …private native void _eglCreatePixmapSurface(EGLSurface sur, EGLDisplay display, EGLConfig config, … in _eglCreatePixmapSurface()
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
D | RenderTarget.java | 36 import javax.microedition.khronos.egl.EGLSurface; 47 private static HashMap<Object, EGLSurface> mSurfaceSources = new HashMap<Object, EGLSurface>(); 67 private EGLSurface mSurface; 76 private static HashMap<EGLContext, EGLSurface> mDisplaySurfaces 77 = new HashMap<EGLContext, EGLSurface>(); 91 EGLSurface eglSurface = createSurface(egl, eglDisplay, width, height); in newTarget() 120 EGLSurface eglSurf = null; in forSurfaceHolder() 139 EGLSurface eglSurf = null; in forSurfaceTexture() 158 EGLSurface eglSurf = null; in forSurface() 194 EGLSurface currentSurface = mDisplaySurfaces.get(mContext); in registerAsDisplaySurface() [all …]
|
/frameworks/base/core/jni/ |
D | android_opengl_EGL14.cpp | 126 (EGLSurface)handle == EGL_NO_SURFACE) { in toEGLHandle() 535 EGLSurface _returnValue = (EGLSurface) 0; in android_eglCreateWindowSurface() 612 EGLSurface _returnValue = (EGLSurface) 0; in android_eglCreateWindowSurfaceTexture() 693 EGLSurface _returnValue = (EGLSurface) 0; in android_eglCreatePbufferSurface() 754 return toEGLHandle(_env, eglsurfaceClass, eglsurfaceConstructor, (EGLSurface) 0); in android_eglCreatePixmapSurface() 763 EGLSurface surface_native = (EGLSurface) fromEGLHandle(_env, eglsurfaceGetHandleID, surface); in android_eglDestroySurface() 767 (EGLSurface)surface_native in android_eglDestroySurface() 781 EGLSurface surface_native = (EGLSurface) fromEGLHandle(_env, eglsurfaceGetHandleID, surface); in android_eglQuerySurface() 811 (EGLSurface)surface_native, in android_eglQuerySurface() 872 EGLSurface _returnValue = (EGLSurface) 0; in android_eglCreatePbufferFromClientBuffer() [all …]
|
/frameworks/native/opengl/tools/glgen/stubs/egl/ |
D | eglCreateWindowSurface.java | 3 private static native EGLSurface _eglCreateWindowSurface( in _eglCreateWindowSurface() 11 private static native EGLSurface _eglCreateWindowSurfaceTexture( in _eglCreateWindowSurfaceTexture() 19 public static EGLSurface eglCreateWindowSurface(EGLDisplay dpy, in eglCreateWindowSurface() 36 EGLSurface surface; in eglCreateWindowSurface()
|
D | eglCreatePbufferFromClientBuffer.java | 3 public static native EGLSurface eglCreatePbufferFromClientBuffer( in eglCreatePbufferFromClientBuffer() 15 public static native EGLSurface eglCreatePbufferFromClientBuffer( in eglCreatePbufferFromClientBuffer()
|
D | eglCreatePbufferFromClientBuffer.nativeReg | 1 …roid/opengl/EGLDisplay;IILandroid/opengl/EGLConfig;[II)Landroid/opengl/EGLSurface;", (void *) andr… 2 …roid/opengl/EGLDisplay;IJLandroid/opengl/EGLConfig;[II)Landroid/opengl/EGLSurface;", (void *) andr…
|
D | eglCreateWindowSurface.nativeReg | 1 …isplay;Landroid/opengl/EGLConfig;Ljava/lang/Object;[II)Landroid/opengl/EGLSurface;", (void *) andr… 2 …isplay;Landroid/opengl/EGLConfig;Ljava/lang/Object;[II)Landroid/opengl/EGLSurface;", (void *) andr…
|
/frameworks/base/media/mca/filterfw/native/core/ |
D | gl_env.h | 104 int AddSurface(const EGLSurface& surface); 110 int AddWindowSurface(const EGLSurface& surface, WindowHandle* window_handle); 132 const EGLSurface& surface() const { in surface() 217 typedef std::pair<EGLSurface, WindowHandle*> SurfaceWindowPair;
|