Home
last modified time | relevance | path

Searched refs:EGLContext (Results 1 – 18 of 18) sorted by relevance

/external/webkit/Source/ThirdParty/ANGLE/include/EGL/
Degl.h47 typedef void *EGLContext; typedef
69 #define EGL_NO_CONTEXT ((EGLContext)0)
297 EGLAPI EGLContext EGLAPIENTRY eglCreateContext(EGLDisplay dpy, EGLConfig config,
298 EGLContext share_context,
300 EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext(EGLDisplay dpy, EGLContext ctx);
302 EGLSurface read, EGLContext ctx);
304 EGLAPI EGLContext EGLAPIENTRY eglGetCurrentContext(void);
307 EGLAPI EGLBoolean EGLAPIENTRY eglQueryContext(EGLDisplay dpy, EGLContext ctx,
Deglext.h84 EGLAPI EGLImageKHR EGLAPIENTRY eglCreateImageKHR (EGLDisplay dpy, EGLContext ctx, EGLenum target, E…
87 typedef EGLImageKHR (EGLAPIENTRYP PFNEGLCREATEIMAGEKHRPROC) (EGLDisplay dpy, EGLContext ctx, EGLenu…
/external/skia/include/gpu/gl/
DSkANGLEGLContext.h32 EGLContext fOldEGLContext;
42 EGLContext fContext;
DSkNativeGLContext.h43 EGLContext fOldEGLContext;
67 EGLContext fContext;
/external/webkit/Source/WebCore/platform/graphics/openvg/
DEGLDisplayOpenVG.cpp226 EGLContext context = eglCreateContext(m_display, config, EGL_NO_CONTEXT, 0); in sharedPlatformSurface()
347 EGLContext context = m_contexts.take(surfaceConfigId); in destroySurface()
367 EGLContext EGLDisplayOpenVG::contextForSurface(const EGLSurface& surface) in contextForSurface()
403 EGLContext currentContext = eglGetCurrentContext(); in contextForSurface()
409 HashMap<EGLint, EGLContext>::iterator end = m_contexts.end(); in contextForSurface()
411 for (HashMap<EGLint, EGLContext>::iterator it = m_contexts.begin(); it != end; ++it) { in contextForSurface()
447EGLContext context = eglCreateContext(m_display, config, m_sharedPlatformSurface->eglContext(), 0); in contextForSurface()
DSurfaceOpenVG.h100 EGLContext eglContext() const { return m_eglContext; } in eglContext()
152 EGLContext m_eglContext;
DEGLDisplayOpenVG.h67 EGLContext contextForSurface(const EGLSurface&);
85 HashMap<EGLint, EGLContext> m_contexts;
/external/webkit/Source/ThirdParty/ANGLE/src/libEGL/
DlibEGL.cpp770 EGLContext __stdcall eglCreateContext(EGLDisplay dpy, EGLConfig config, EGLContext share_context, c… in eglCreateContext()
806EGLContext context = display->createContext(config, static_cast<gl::Context*>(share_context)); in eglCreateContext()
818 EGLBoolean __stdcall eglDestroyContext(EGLDisplay dpy, EGLContext ctx) in eglDestroyContext()
848 EGLBoolean __stdcall eglMakeCurrent(EGLDisplay dpy, EGLSurface draw, EGLSurface read, EGLContext ct… in eglMakeCurrent()
896 EGLContext __stdcall eglGetCurrentContext(void) in eglGetCurrentContext()
902 EGLContext context = glGetCurrentContext(); in eglGetCurrentContext()
961 EGLBoolean __stdcall eglQueryContext(EGLDisplay dpy, EGLContext ctx, EGLint attribute, EGLint *valu… in eglQueryContext()
DDisplay.h46 EGLContext createContext(EGLConfig configHandle, const gl::Context *shareContext);
DDisplay.cpp406 EGLContext Display::createContext(EGLConfig configHandle, const gl::Context *shareContext) in createContext()
/external/replicaisland/src/com/replica/replicaisland/
DGLSurfaceView.java25 import javax.microedition.khronos.egl.EGLContext;
701 EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig); in createContext()
702 void destroyContext(EGL10 egl, EGLDisplay display, EGLContext context); in destroyContext()
708 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig config) { in createContext()
717 EGLContext context) { in destroyContext()
925 mEgl = (EGL10) EGLContext.getEGL(); in start()
1057 EGLContext currentContext = mEgl.eglGetCurrentContext(); in verifyContext()
1065 EGLContext mEglContext;
/external/webkit/Source/WebKit/android/plugins/
DANPOpenGL_npapi.h46 EGLContext (*acquireContext)(NPP instance);
/external/webkit/Source/WebCore/platform/graphics/android/rendering/
DGaneshContext.h55 EGLContext m_surfaceContext;
DTilesManager.h210 EGLContext m_eglContext;
DTilesManager.cpp474 EGLContext ctx = eglGetCurrentContext(); in updateTilesIfContextVerified()
/external/webrtc/src/modules/audio_processing/test/android/apmtest/jni/
Dmain.c54 EGLContext context;
82 EGLContext context; in engine_init_display()
/external/skia/include/views/
DSkOSWindow_Win.h71 EGLContext fContext;
/external/jmonkeyengine/engine/src/android/com/jme3/system/android/
DOGLESContext.java69 import javax.microedition.khronos.egl.EGLContext;
153 EGL10 egl = (EGL10) EGLContext.getEGL(); in createView()