/external/webkit/Source/WebCore/platform/graphics/openvg/ |
D | EGLDisplayOpenVG.h | 53 EGLSurface createPbufferSurface(const IntSize&, const EGLConfig&, EGLint* errorCode = 0); 54 …EGLSurface createPbufferFromClientBuffer(EGLClientBuffer, EGLenum bufferType, const EGLConfig&, EG… 56 EGLSurface surfaceForWindow(EGLNativeWindowType, const EGLConfig&); 58 bool surfacesCompatible(const EGLSurface&, const EGLSurface&); 63 void destroySurface(const EGLSurface&); 67 EGLContext contextForSurface(const EGLSurface&); 81 HashMap<EGLSurface, SurfaceOpenVG*> m_platformSurfaces; 82 HashMap<EGLNativeWindowType, EGLSurface> m_windowSurfaces; 83 HashMap<EGLSurface, EGLint> m_surfaceConfigIds;
|
D | EGLDisplayOpenVG.cpp | 55 EGLSurface currentSurface = eglGetCurrentSurface(EGL_DRAW); in currentSurface() 122 HashMap<EGLSurface, EGLint>::const_iterator end = m_surfaceConfigIds.end(); in ~EGLDisplayOpenVG() 123 … for (HashMap<EGLSurface, EGLint>::const_iterator it = m_surfaceConfigIds.begin(); it != end; ++it) in ~EGLDisplayOpenVG() 224 EGLSurface surface = createPbufferSurface(IntSize(1, 1), config); in sharedPlatformSurface() 239 EGLSurface EGLDisplayOpenVG::createPbufferSurface(const IntSize& size, const EGLConfig& config, EGL… in createPbufferSurface() 246 EGLSurface surface = eglCreatePbufferSurface(m_display, config, attribList); in createPbufferSurface() 266 EGLSurface EGLDisplayOpenVG::createPbufferFromClientBuffer( in createPbufferFromClientBuffer() 269 EGLSurface surface = eglCreatePbufferFromClientBuffer(m_display, in createPbufferFromClientBuffer() 290 EGLSurface EGLDisplayOpenVG::surfaceForWindow(EGLNativeWindowType wId, const EGLConfig& config) in surfaceForWindow() 295 EGLSurface surface = eglCreateWindowSurface(m_display, config, wId, 0); in surfaceForWindow() [all …]
|
D | SurfaceOpenVG.h | 99 EGLSurface eglSurface() const { return m_eglSurface; } in eglSurface() 151 EGLSurface m_eglSurface;
|
D | SurfaceOpenVG.cpp | 191 EGLSurface currentSurface = eglGetCurrentSurface(EGL_DRAW); in makeCurrent() 220 EGLSurface currentSurface = eglGetCurrentSurface(EGL_DRAW); in makeCompatibleCurrent()
|
/external/webkit/Source/ThirdParty/ANGLE/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…
|
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/ |
D | main.h | 22 EGLSurface drawSurface; 23 EGLSurface readSurface; 35 void setCurrentDrawSurface(EGLSurface surface); 36 EGLSurface getCurrentDrawSurface(); 38 void setCurrentReadSurface(EGLSurface surface); 39 EGLSurface getCurrentReadSurface();
|
D | libEGL.cpp | 318 EGLSurface __stdcall eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType w… in eglCreateWindowSurface() 373 EGLSurface surface = (EGLSurface)display->createWindowSurface(window, config); in eglCreateWindowSurface() 385 EGLSurface __stdcall eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig config, const EGLint *attrib… in eglCreatePbufferSurface() 411 EGLSurface __stdcall eglCreatePixmapSurface(EGLDisplay dpy, EGLConfig config, EGLNativePixmapType p… in eglCreatePixmapSurface() 437 EGLBoolean __stdcall eglDestroySurface(EGLDisplay dpy, EGLSurface surface) in eglDestroySurface() 467 EGLBoolean __stdcall eglQuerySurface(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *… in eglQuerySurface() 635 EGLSurface __stdcall eglCreatePbufferFromClientBuffer(EGLDisplay dpy, EGLenum buftype, EGLClientBuf… in eglCreatePbufferFromClientBuffer() 662 EGLBoolean __stdcall eglSurfaceAttrib(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint … in eglSurfaceAttrib() 688 EGLBoolean __stdcall eglBindTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer) in eglBindTexImage() 713 EGLBoolean __stdcall eglReleaseTexImage(EGLDisplay dpy, EGLSurface surface, EGLint buffer) in eglReleaseTexImage() [all …]
|
D | main.cpp | 129 void setCurrentDrawSurface(EGLSurface surface) in setCurrentDrawSurface() 136 EGLSurface getCurrentDrawSurface() in getCurrentDrawSurface() 143 void setCurrentReadSurface(EGLSurface surface) in setCurrentReadSurface() 150 EGLSurface getCurrentReadSurface() in getCurrentReadSurface()
|
/external/skia/include/gpu/gl/ |
D | SkANGLEGLContext.h | 34 EGLSurface fOldSurface; 44 EGLSurface fSurface;
|
D | SkNativeGLContext.h | 45 EGLSurface fOldSurface; 69 EGLSurface fSurface;
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | GLSurfaceView.java | 27 import javax.microedition.khronos.egl.EGLSurface; 729 EGLSurface createWindowSurface(EGL10 egl, EGLDisplay display, EGLConfig config, in createWindowSurface() 731 void destroySurface(EGL10 egl, EGLDisplay display, EGLSurface surface); in destroySurface() 736 public EGLSurface createWindowSurface(EGL10 egl, EGLDisplay display, in createWindowSurface() 742 EGLSurface surface) { in destroySurface() 1063 EGLSurface mEglSurface;
|
/external/webrtc/src/modules/audio_processing/test/android/apmtest/jni/ |
D | main.c | 53 EGLSurface surface; 81 EGLSurface surface; in engine_init_display()
|
/external/skia/include/views/ |
D | SkOSWindow_Win.h | 72 EGLSurface fSurface;
|
/external/webkit/Source/WebCore/platform/graphics/android/rendering/ |
D | TransferQueue.h | 143 EGLSurface m_eglSurface;
|
D | GLUtils.cpp | 288 static EGLSurface createPbufferSurface(EGLDisplay display, const EGLConfig& config, in createPbufferSurface() 296 EGLSurface surface = eglCreatePbufferSurface(display, config, attribList); in createPbufferSurface()
|