/frameworks/native/opengl/specs/ |
D | EGL_ANDROID_get_native_client_buffer.txt | 41 This extension allows creating an EGLClientBuffer from an Android 50 EGLClientBuffer eglGetNativeClientBufferANDROID(const struct AHardwareBuffer *buffer) 64 EGLClientBuffer eglGetNativeClientBufferANDROID( 67 may be used to create an EGLClientBuffer from an AHardwareBuffer object. 69 EGLClientBuffer is at least as long as the EGLImage(s) it is bound to, 71 EGLClientBuffer must be destroyed no earlier than when all of its associated
|
D | EGL_ANDROID_image_native_buffer.txt | 78 ANativeWindowBuffer object (cast into the type EGLClientBuffer), and
|
/frameworks/native/opengl/libs/EGL/ |
D | egl_entries.in | 41 EGL_ENTRY(EGLSurface, eglCreatePbufferFromClientBuffer, EGLDisplay, EGLenum, EGLClientBuffer, EGLCo… 48 EGL_ENTRY(EGLImage, eglCreateImage, EGLDisplay, EGLContext, EGLenum, EGLClientBuffer, const EGLAttr… 63 EGL_ENTRY(EGLImageKHR, eglCreateImageKHR, EGLDisplay, EGLContext, EGLenum, EGLClientBuffer, const… 97 EGL_ENTRY(EGLClientBuffer, eglGetRenderBufferANDROID, EGLDisplay, EGLSurface) 99 EGL_ENTRY(EGLClientBuffer, eglCreateNativeClientBufferANDROID, const EGLint *) 100 EGL_ENTRY(EGLClientBuffer, eglGetNativeClientBufferANDROID, const AHardwareBuffer *)
|
D | eglApi.cpp | 355 EGLSurface eglCreatePbufferFromClientBuffer(EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, in eglCreatePbufferFromClientBuffer() 379 EGLClientBuffer buffer, const EGLint* attrib_list) { in eglCreateImageKHR() 386 EGLImage eglCreateImage(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, in eglCreateImage() 591 EGLClientBuffer eglGetNativeClientBufferANDROID(const AHardwareBuffer* buffer) { in eglGetNativeClientBufferANDROID()
|
D | egl_platform_entries.cpp | 1653 EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, in eglCreatePbufferFromClientBufferImpl() 1708 EGLClientBuffer buffer, const AttrType* attrib_list, in eglCreateImageTmpl() 1746 EGLClientBuffer buffer, 1750 EGLClientBuffer buffer, const EGLint* attrib_list) { in eglCreateImageKHRImpl() 1756 EGLImage eglCreateImageImpl(EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, in eglCreateImageImpl() 2234 EGLClientBuffer eglGetNativeClientBufferANDROIDImpl(const AHardwareBuffer *buffer) { in eglGetNativeClientBufferANDROIDImpl() 2239 if (!buffer) return setError(EGL_BAD_PARAMETER, (EGLClientBuffer) nullptr); in eglGetNativeClientBufferANDROIDImpl() 2242 return setError(EGL_BAD_PARAMETER, (EGLClientBuffer) nullptr); in eglGetNativeClientBufferANDROIDImpl()
|
/frameworks/native/opengl/libs/ |
D | platform_entries.in | 40 EGL_ENTRY(EGLSurface, eglCreatePbufferFromClientBuffer, EGLDisplay, EGLenum, EGLClientBuffer, EGLCo… 43 EGL_ENTRY(EGLImage, eglCreateImage, EGLDisplay, EGLContext, EGLenum, EGLClientBuffer, const EGLAttr… 45 EGL_ENTRY(EGLImageKHR, eglCreateImageKHR, EGLDisplay, EGLContext, EGLenum, EGLClientBuffer, const E… 72 EGL_ENTRY(EGLClientBuffer, eglGetNativeClientBufferANDROID, const AHardwareBuffer*)
|
/frameworks/base/libs/hwui/pipeline/skia/ |
D | VkInteropFunctorDrawable.cpp | 109 EGLClientBuffer clientBuffer = (EGLClientBuffer)mFrameBuffer->getNativeBuffer(); in onDraw()
|
/frameworks/native/libs/renderengine/gl/ |
D | GLImage.cpp | 67 static_cast<EGLClientBuffer>(buffer), attrs.data()); in setNativeWindowBuffer()
|
/frameworks/base/libs/hwui/utils/ |
D | GLUtils.h | 57 AutoEglImage(EGLDisplay display, EGLClientBuffer clientBuffer) : mDisplay(display) { in AutoEglImage()
|
/frameworks/native/opengl/include/EGL/ |
D | egl.h | 172 typedef void *EGLClientBuffer; typedef 204 …Y eglCreatePbufferFromClientBuffer (EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buffer, EGLCo… 291 …NTRY eglCreateImage (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const…
|
D | eglext.h | 208 …CREATEIMAGEKHRPROC) (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const… 211 …Y eglCreateImageKHR (EGLDisplay dpy, EGLContext ctx, EGLenum target, EGLClientBuffer buffer, const… 482 typedef EGLClientBuffer (EGLAPIENTRYP PFNEGLCREATENATIVECLIENTBUFFERANDROIDPROC) (const EGLint *att… 484 EGLAPI EGLClientBuffer EGLAPIENTRY eglCreateNativeClientBufferANDROID (const EGLint *attrib_list); 533 typedef EGLClientBuffer (EGLAPIENTRYP PFNEGLGETNATIVECLIENTBUFFERANDROIDPROC) (const struct AHardwa… 535 EGLAPI EGLClientBuffer EGLAPIENTRY eglGetNativeClientBufferANDROID (const struct AHardwareBuffer *b…
|
/frameworks/native/opengl/tools/glgen/stubs/egl/ |
D | eglCreateImage.cpp | 36 (EGLClientBuffer)buffer, in android_eglCreateImage()
|
D | eglCreatePbufferFromClientBuffer.cpp | 45 reinterpret_cast<EGLClientBuffer>(buffer), in android_eglCreatePbufferFromClientBuffer()
|
/frameworks/native/opengl/tests/gl_yuvtex/ |
D | gl_yuvtex.cpp | 130 EGLClientBuffer clientBuffer = (EGLClientBuffer)yuvTexBuffer->getNativeBuffer(); in setupYuvTexSurface()
|
/frameworks/native/opengl/tools/glgen/specs/egl/ |
D | EGL14.spec | 18 EGLSurface eglCreatePbufferFromClientBuffer ( EGLDisplay dpy, EGLenum buftype, EGLClientBuffer buff…
|
/frameworks/native/opengl/tests/gl2_yuvtex/ |
D | gl2_yuvtex.cpp | 235 EGLClientBuffer clientBuffer = (EGLClientBuffer)yuvTexBuffer->getNativeBuffer(); in setupYuvTexSurface()
|
/frameworks/base/libs/hwui/ |
D | HardwareBitmapUploader.cpp | 177 EGLClientBuffer clientBuffer = (EGLClientBuffer)graphicBuffer->getNativeBuffer(); in onUploadHardwareBitmap()
|
/frameworks/base/libs/hwui/debug/ |
D | nullegl.cpp | 154 EGLClientBuffer buffer, const EGLint* attrib_list) { in eglCreateImageKHR()
|
/frameworks/base/libs/hwui/surfacetexture/ |
D | EGLConsumer.cpp | 654 EGLClientBuffer cbuf = static_cast<EGLClientBuffer>(graphicBuffer->getNativeBuffer()); in createImage()
|
/frameworks/native/libs/gui/ |
D | GLConsumer.cpp | 991 EGLClientBuffer cbuf = in createImage() 992 static_cast<EGLClientBuffer>(graphicBuffer->getNativeBuffer()); in createImage()
|
/frameworks/base/core/jni/ |
D | android_opengl_EGL15.cpp | 503 (EGLClientBuffer)buffer, in android_eglCreateImage()
|
D | android_opengl_EGL14.cpp | 896 reinterpret_cast<EGLClientBuffer>(buffer), in android_eglCreatePbufferFromClientBuffer()
|
/frameworks/native/opengl/libagl/ |
D | egl.cpp | 2050 EGLDisplay dpy, EGLenum /*buftype*/, EGLClientBuffer /*buffer*/, in eglCreatePbufferFromClientBuffer() argument 2088 EGLClientBuffer buffer, const EGLint* /*attrib_list*/) in eglCreateImageKHR()
|