Searched refs:EGLSurface (Results 1 - 14 of 14) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/openvg/
H A DEGLDisplayOpenVG.h53 EGLSurface createPbufferSurface(const IntSize&, const EGLConfig&, EGLint* errorCode = 0);
54 EGLSurface createPbufferFromClientBuffer(EGLClientBuffer, EGLenum bufferType, const EGLConfig&, EGLint* errorCode = 0);
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, EGLin
[all...]
H A DEGLDisplayOpenVG.cpp55 EGLSurface currentSurface = eglGetCurrentSurface(EGL_DRAW);
122 HashMap<EGLSurface, EGLint>::const_iterator end = m_surfaceConfigIds.end();
123 for (HashMap<EGLSurface, EGLint>::const_iterator it = m_surfaceConfigIds.begin(); it != end; ++it)
224 EGLSurface surface = createPbufferSurface(IntSize(1, 1), config);
239 EGLSurface EGLDisplayOpenVG::createPbufferSurface(const IntSize& size, const EGLConfig& config, EGLint* errorCode)
246 EGLSurface surface = eglCreatePbufferSurface(m_display, config, attribList);
266 EGLSurface EGLDisplayOpenVG::createPbufferFromClientBuffer(
269 EGLSurface surface = eglCreatePbufferFromClientBuffer(m_display,
290 EGLSurface EGLDisplayOpenVG::surfaceForWindow(EGLNativeWindowType wId, const EGLConfig& config)
295 EGLSurface surfac
[all...]
H A DSurfaceOpenVG.h99 EGLSurface eglSurface() const { return m_eglSurface; }
151 EGLSurface m_eglSurface;
H A DSurfaceOpenVG.cpp191 EGLSurface currentSurface = eglGetCurrentSurface(EGL_DRAW);
220 EGLSurface currentSurface = eglGetCurrentSurface(EGL_DRAW);
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
H A Dmain.h22 EGLSurface drawSurface;
23 EGLSurface readSurface;
35 void setCurrentDrawSurface(EGLSurface surface);
36 EGLSurface getCurrentDrawSurface();
38 void setCurrentReadSurface(EGLSurface surface);
39 EGLSurface getCurrentReadSurface();
H A Dmain.cpp129 void setCurrentDrawSurface(EGLSurface surface)
136 EGLSurface getCurrentDrawSurface()
143 void setCurrentReadSurface(EGLSurface surface)
150 EGLSurface getCurrentReadSurface()
H A DlibEGL.cpp318 EGLSurface __stdcall eglCreateWindowSurface(EGLDisplay dpy, EGLConfig config, EGLNativeWindowType win, const EGLint *attrib_list)
373 EGLSurface surface = (EGLSurface)display->createWindowSurface(window, config);
385 EGLSurface __stdcall eglCreatePbufferSurface(EGLDisplay dpy, EGLConfig config, const EGLint *attrib_list)
411 EGLSurface __stdcall eglCreatePixmapSurface(EGLDisplay dpy, EGLConfig config, EGLNativePixmapType pixmap, const EGLint *attrib_list)
437 EGLBoolean __stdcall eglDestroySurface(EGLDisplay dpy, EGLSurface surface)
439 TRACE("(EGLDisplay dpy = 0x%0.8p, EGLSurface surface = 0x%0.8p)", dpy, surface);
467 EGLBoolean __stdcall eglQuerySurface(EGLDisplay dpy, EGLSurface surface, EGLint attribute, EGLint *value)
469 TRACE("(EGLDisplay dpy = 0x%0.8p, EGLSurface surface = 0x%0.8p, EGLint attribute = %d, EGLint *value = 0x%0.8p)",
635 EGLSurface __stdcal
[all...]
/external/webkit/Source/ThirdParty/ANGLE/include/EGL/
H A Degl.h49 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 surfac
[all...]
H A Deglext.h71 EGLAPI EGLBoolean EGLAPIENTRY eglLockSurfaceKHR (EGLDisplay display, EGLSurface surface, const EGLint *attrib_list);
72 EGLAPI EGLBoolean EGLAPIENTRY eglUnlockSurfaceKHR (EGLDisplay display, EGLSurface surface);
74 typedef EGLBoolean (EGLAPIENTRYP PFNEGLLOCKSURFACEKHRPROC) (EGLDisplay display, EGLSurface surface, const EGLint *attrib_list);
75 typedef EGLBoolean (EGLAPIENTRYP PFNEGLUNLOCKSURFACEKHRPROC) (EGLDisplay display, EGLSurface surface);
/external/skia/include/gpu/gl/
H A DSkNativeGLContext.h53 EGLSurface fOldSurface;
77 EGLSurface fSurface;
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
H A DTransferQueue.h143 EGLSurface m_eglSurface;
H A DGLUtils.cpp288 static EGLSurface createPbufferSurface(EGLDisplay display, const EGLConfig& config,
296 EGLSurface surface = eglCreatePbufferSurface(display, config, attribList);
/external/webrtc/src/modules/audio_processing/test/android/apmtest/jni/
H A Dmain.c53 EGLSurface surface;
81 EGLSurface surface;
/external/replicaisland/src/com/replica/replicaisland/
H A DGLSurfaceView.java27 import javax.microedition.khronos.egl.EGLSurface;
729 EGLSurface createWindowSurface(EGL10 egl, EGLDisplay display, EGLConfig config,
731 void destroySurface(EGL10 egl, EGLDisplay display, EGLSurface surface);
736 public EGLSurface createWindowSurface(EGL10 egl, EGLDisplay display,
742 EGLSurface surface) {
1063 EGLSurface mEglSurface;

Completed in 132 milliseconds