HomeSort by relevance Sort by last modified time
    Searched refs:eglContext (Results 1 - 13 of 13) sorted by null

  /sdk/emulator/opengl/host/libs/Translator/EGL/
ThreadInfo.h 19 #include "EglContext.h"
33 ContextPtr eglContext;
ClientAPIExts.cpp 97 if (!thread->eglContext.Ptr()) { \
100 int idx = (int)thread->eglContext->version() - 1; \
111 if (!thread->eglContext.Ptr()) { \
114 int idx = (int)thread->eglContext->version() - 1; \
ThreadInfo.cpp 26 eglContext = eglCtx;
EglImp.cpp 36 #include "EglContext.h"
75 EGLImageKHR eglCreateImageKHR(EGLDisplay display, EGLContext context, EGLenum target, EGLClientBuffer buffer, const EGLint *attrib_list);
119 #define VALIDATE_CONTEXT_RETURN(EGLContext,ret) \
120 ContextPtr ctx = dpy->getContext(EGLContext); \
135 #define VALIDATE_CONTEXT(EGLContext) \
136 VALIDATE_CONTEXT_RETURN(EGLContext,EGL_FALSE)
605 EGLAPI EGLContext EGLAPIENTRY eglCreateContext(EGLDisplay display, EGLConfig config,
606 EGLContext share_context,
651 ContextPtr ctx(new EglContext(dpy, nativeContext,sharedCtxPtr,cfg,glesCtx,version,dpy->getManager(version)));
660 EGLAPI EGLBoolean EGLAPIENTRY eglDestroyContext(EGLDisplay display, EGLContext context)
    [all...]
  /sdk/emulator/opengl/tests/ut_renderer/
Renderer.cpp 141 EGLContext eglContext;
147 eglContext = c->second->eglContext();
153 eglContext = c->second->eglContext();
156 eglContext = EGL_NO_CONTEXT;
169 return eglMakeCurrent(m_dpy, draw, read, eglContext);
RendererContext.cpp 22 EGLContext ctx;
23 EGLContext shared = shareCtx == NULL ? EGL_NO_CONTEXT : shareCtx->eglContext();
RendererContext.h 42 EGLContext eglContext() { return m_ctx; }
100 EGLContext m_ctx;
104 RendererContext(EGLDisplay dpy, EGLContext ctx, int version) :
  /external/webkit/Source/WebCore/platform/graphics/openvg/
SurfaceOpenVG.h 100 EGLContext eglContext() const { return m_eglContext; }
152 EGLContext m_eglContext;
EGLDisplayOpenVG.cpp 226 EGLContext context = eglCreateContext(m_display, config, EGL_NO_CONTEXT, 0);
347 EGLContext context = m_contexts.take(surfaceConfigId);
367 EGLContext EGLDisplayOpenVG::contextForSurface(const EGLSurface& surface)
372 return m_platformSurfaces.get(surface)->eglContext();
403 EGLContext currentContext = eglGetCurrentContext();
409 HashMap<EGLint, EGLContext>::iterator end = m_contexts.end();
411 for (HashMap<EGLint, EGLContext>::iterator it = m_contexts.begin(); it != end; ++it) {
447 EGLContext context = eglCreateContext(m_display, config, m_sharedPlatformSurface->eglContext(), 0);
  /frameworks/native/opengl/tests/tritex/
tritex.cpp 22 EGLContext eglContext;
153 if ( (eglContext = eglCreateContext(eglDisplay, myConfig, 0, 0)) == EGL_NO_CONTEXT )
159 if ( eglMakeCurrent(eglDisplay, eglSurface, eglSurface, eglContext) != EGL_TRUE )
174 eglDestroyContext( eglDisplay, eglContext );
  /frameworks/native/opengl/tests/gl_basic/
gl_basic.cpp 20 EGLContext eglContext;
249 if ( (eglContext = eglCreateContext(eglDisplay, myConfig, 0, 0)) == EGL_NO_CONTEXT )
255 if ( eglMakeCurrent(eglDisplay, eglSurface, eglSurface, eglContext) != EGL_TRUE )
285 eglDestroyContext( eglDisplay, eglContext );
  /frameworks/base/core/java/android/view/
HardwareRenderer.java 37 import javax.microedition.khronos.egl.EGLContext;
601 EGLContext mEglContext;
787 sEgl = (EGL10) EGLContext.getEGL();
830 abstract ManagedEGLContext createManagedContext(EGLContext eglContext);
    [all...]
  /frameworks/native/opengl/libs/GLES_trace/src/
gltrace_context.cpp 117 GLTraceContext *GLTraceState::createTraceContext(int version, EGLContext eglContext) {
123 mPerContextState[eglContext] = traceContext;
128 GLTraceContext *GLTraceState::getTraceContext(EGLContext c) {

Completed in 409 milliseconds