Home
last modified time | relevance | path

Searched refs:mEglContext (Results 1 – 3 of 3) sorted by relevance

/external/skqp/platform_tools/android/apps/skottie/src/main/java/org/skia/skottie/
DSkottieRunner.java44 private EGLContext mEglContext; field in SkottieRunner
179 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig);
194 if (!mEgl.eglMakeCurrent(mEglDisplay, mPBufferSurface, mPBufferSurface, mEglContext)) {
238 if (mEglContext != null) { in doFinishGL()
239 mEgl.eglDestroyContext(mEglDisplay, mEglContext); in doFinishGL()
240 mEglContext = null; in doFinishGL()
345 mEglContext); in stop()
415 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) { in drawFrame()
448 mEglContext); in drawFrame()
/external/skia/platform_tools/android/apps/skottie/src/main/java/org/skia/skottie/
DSkottieRunner.java44 private EGLContext mEglContext; field in SkottieRunner
179 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig);
194 if (!mEgl.eglMakeCurrent(mEglDisplay, mPBufferSurface, mPBufferSurface, mEglContext)) {
238 if (mEglContext != null) { in doFinishGL()
239 mEgl.eglDestroyContext(mEglDisplay, mEglContext); in doFinishGL()
240 mEglContext = null; in doFinishGL()
345 mEglContext); in stop()
415 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) { in drawFrame()
448 mEglContext); in drawFrame()
/external/replicaisland/src/com/replica/replicaisland/
DGLSurfaceView.java949 mEglContext = mEGLContextFactory.createContext(mEgl, mEglDisplay, mEglConfig); in start()
950 if (mEglContext == null || mEglContext == EGL10.EGL_NO_CONTEXT) { in start()
991 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) { in createSurface()
995 GL gl = mEglContext.getGL(); in createSurface()
1041 if (mEglContext != null) { in finish()
1042 mEGLContextFactory.destroyContext(mEgl, mEglDisplay, mEglContext); in finish()
1043 mEglContext = null; in finish()
1065 EGLContext mEglContext; field in GLSurfaceView.EglHelper