Home
last modified time | relevance | path

Searched refs:EGL_NO_SURFACE (Results 1 – 12 of 12) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/openvg/
DSurfaceOpenVG.cpp51 , m_eglSurface(EGL_NO_SURFACE) in SurfaceOpenVG()
60 if (m_eglSurface == EGL_NO_SURFACE) in SurfaceOpenVG()
70 , m_eglSurface(EGL_NO_SURFACE) in SurfaceOpenVG()
79 if (m_eglSurface == EGL_NO_SURFACE) in SurfaceOpenVG()
89 , m_eglSurface(EGL_NO_SURFACE) in SurfaceOpenVG()
97 ASSERT(m_eglSurface != EGL_NO_SURFACE); in SurfaceOpenVG()
111 , m_eglSurface(EGL_NO_SURFACE) in SurfaceOpenVG()
136 return (m_eglSurface != EGL_NO_SURFACE); in isValid()
146 ASSERT(m_eglSurface != EGL_NO_SURFACE); in width()
161 ASSERT(m_eglSurface != EGL_NO_SURFACE); in height()
[all …]
DEGLDisplayOpenVG.cpp57 …if (currentSurface == EGL_NO_SURFACE || !displayManager->m_platformSurfaces.contains(currentSurfac… in currentSurface()
117 eglMakeCurrent(m_display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); in ~EGLDisplayOpenVG()
253 if (surface == EGL_NO_SURFACE) in createPbufferSurface()
254 return EGL_NO_SURFACE; in createPbufferSurface()
277 if (surface == EGL_NO_SURFACE) in createPbufferFromClientBuffer()
278 return EGL_NO_SURFACE; in createPbufferFromClientBuffer()
310 if (surface == EGL_NO_SURFACE || otherSurface == EGL_NO_SURFACE) in surfacesCompatible()
322 ASSERT(surface != EGL_NO_SURFACE); in destroySurface()
325 eglMakeCurrent(m_display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); in destroySurface()
369 ASSERT(surface != EGL_NO_SURFACE); in contextForSurface()
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
DlibEGL.cpp329 return EGL_NO_SURFACE; in eglCreateWindowSurface()
336 return error(EGL_BAD_NATIVE_WINDOW, EGL_NO_SURFACE); in eglCreateWindowSurface()
351 … return error(EGL_BAD_MATCH, EGL_NO_SURFACE); // Rendering directly to front buffer not supported in eglCreateWindowSurface()
353 return error(EGL_BAD_ATTRIBUTE, EGL_NO_SURFACE); in eglCreateWindowSurface()
357 return error(EGL_BAD_MATCH, EGL_NO_SURFACE); in eglCreateWindowSurface()
359 return error(EGL_BAD_MATCH, EGL_NO_SURFACE); in eglCreateWindowSurface()
361 return error(EGL_BAD_ATTRIBUTE, EGL_NO_SURFACE); in eglCreateWindowSurface()
370 return error(EGL_BAD_ALLOC, EGL_NO_SURFACE); in eglCreateWindowSurface()
379 return error(EGL_BAD_ALLOC, EGL_NO_SURFACE); in eglCreateWindowSurface()
382 return EGL_NO_SURFACE; in eglCreateWindowSurface()
[all …]
Dmain.cpp51 current->drawSurface = EGL_NO_SURFACE; in DllMain()
52 current->readSurface = EGL_NO_SURFACE; in DllMain()
/external/webrtc/src/modules/audio_processing/test/android/apmtest/jni/
Dmain.c150 eglMakeCurrent(engine->display, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT); in engine_term_display()
154 if (engine->surface != EGL_NO_SURFACE) { in engine_term_display()
162 engine->surface = EGL_NO_SURFACE; in engine_term_display()
/external/skia/src/gpu/gl/angle/
DSkANGLEGLContext.cpp29 , fSurface(EGL_NO_SURFACE) { in SkANGLEGLContext()
47 fSurface = EGL_NO_SURFACE; in destroyGLContext()
/external/skia/src/gpu/gl/android/
DSkNativeGLContext_android.cpp28 , fSurface(EGL_NO_SURFACE) { in SkNativeGLContext()
46 fSurface = EGL_NO_SURFACE; in destroyGLContext()
/external/replicaisland/src/com/replica/replicaisland/
DGLSurfaceView.java966 if (mEglSurface != null && mEglSurface != EGL10.EGL_NO_SURFACE) { in createSurface()
972 mEgl.eglMakeCurrent(mEglDisplay, EGL10.EGL_NO_SURFACE, in createSurface()
973 EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_CONTEXT); in createSurface()
983 if (mEglSurface == null || mEglSurface == EGL10.EGL_NO_SURFACE) { in createSurface()
1031 if (mEglSurface != null && mEglSurface != EGL10.EGL_NO_SURFACE) { in destroySurface()
1032 mEgl.eglMakeCurrent(mEglDisplay, EGL10.EGL_NO_SURFACE, in destroySurface()
1033 EGL10.EGL_NO_SURFACE, in destroySurface()
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
DGaneshContext.cpp128 if (tileQueue->m_eglSurface == EGL_NO_SURFACE) { in getDeviceForTile()
DGLUtils.cpp303 if (surface == EGL_NO_SURFACE) in createPbufferSurface()
304 return EGL_NO_SURFACE; in createPbufferSurface()
DTransferQueue.cpp57 : m_eglSurface(EGL_NO_SURFACE) in TransferQueue()
/external/webkit/Source/ThirdParty/ANGLE/include/EGL/
Degl.h71 #define EGL_NO_SURFACE ((EGLSurface)0) macro