Home
last modified time | relevance | path

Searched refs:mEGLContext (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/opengl/java/com/google/android/gles_jni/
DEGLContextImpl.java24 long mEGLContext; field in EGLContextImpl
27 mEGLContext = ctx; in EGLContextImpl()
43 return mEGLContext == that.mEGLContext; in equals()
53 result = 31 * result + (int) (mEGLContext ^ (mEGLContext >>> 32)); in hashCode()
DEGLImpl.java132 if (mContext.mEGLContext != value) in eglGetCurrentContext()
/frameworks/base/core/java/android/hardware/camera2/legacy/
DSurfaceTextureRenderer.java67 private EGLContext mEGLContext = EGL14.EGL_NO_CONTEXT; field in SurfaceTextureRenderer
449 mEGLContext = EGL14.eglCreateContext(mEGLDisplay, configs[0], EGL14.EGL_NO_CONTEXT, in configureEGLContext()
452 if(mEGLContext == EGL14.EGL_NO_CONTEXT) { in configureEGLContext()
513 EGL14.eglDestroyContext(mEGLDisplay, mEGLContext); in releaseEGLContext()
520 mEGLContext = EGL14.EGL_NO_CONTEXT; in releaseEGLContext()
526 EGL14.eglMakeCurrent(mEGLDisplay, surface, surface, mEGLContext); in makeCurrent()
/frameworks/native/libs/renderengine/gl/
DGLESRenderEngine.cpp356 mEGLContext(ctxt), in GLESRenderEngine()
377 success = eglMakeCurrent(display, mDummySurface, mDummySurface, mEGLContext); in GLESRenderEngine()
461 ProgramCache::getInstance().primeCache(mInProtectedContext ? mProtectedEGLContext : mEGLContext, in primeCache()
466 return mEGLDisplay == eglGetCurrentDisplay() && mEGLContext == eglGetCurrentContext(); in isCurrent()
894 const EGLContext context = useProtectedContext ? mProtectedEGLContext : mEGLContext; in useProtectedContext()
1318 : mEGLContext, in drawMesh()
1331 : mEGLContext, in drawMesh()
1367 cache.getSize(mEGLContext)); in dump()
DGLESRenderEngine.h182 EGLContext mEGLContext; variable