/frameworks/native/libs/gui/tests/ |
H A D | GLTest.h | 41 mEglContext(EGL_NO_CONTEXT), 66 EGLContext mEglContext; member in class:android::GLTest
|
H A D | SurfaceTextureClient_test.cpp | 41 mEglContext(EGL_NO_CONTEXT), 85 mEglContext = eglCreateContext(mEglDisplay, myConfig, EGL_NO_CONTEXT, 0); 87 ASSERT_NE(EGL_NO_CONTEXT, mEglContext); 89 EXPECT_TRUE(eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)); 99 eglDestroyContext(mEglDisplay, mEglContext); 124 EGLContext mEglContext; member in class:android::SurfaceTextureClientTest 192 EGLBoolean success = eglMakeCurrent(mEglDisplay, eglSurface, eglSurface, mEglContext); 206 success = eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext); 726 mEglContext(EGL_NO_CONTEXT) { 755 mEglContext 795 EGLContext mEglContext; member in class:android::MultiSurfaceTextureClientTest [all...] |
/frameworks/av/cmds/screenrecord/ |
H A D | EglWindow.h | 36 mEglContext(EGL_NO_CONTEXT), 76 EGLContext mEglContext; member in class:android::EglWindow
|
/frameworks/base/libs/hwui/renderthread/ |
H A D | EglManager.h | 80 EGLContext mEglContext; member in class:android::uirenderer::renderthread::EglManager
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
H A D | GLTextureViewActivity.java | 143 private EGLContext mEglContext; field in class:GLTextureViewActivity.RenderThread 347 mEgl.eglDestroyContext(mEglDisplay, mEglContext); 352 if (!mEglContext.equals(mEgl.eglGetCurrentContext()) || 354 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) { 381 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig); 395 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) { 400 mGL = mEglContext.getGL();
|
/frameworks/base/tests/UiBench/src/com/android/test/uibench/opengl/ |
H A D | ImageFlipRenderThread.java | 97 private EGLContext mEglContext; field in class:ImageFlipRenderThread 300 mEgl.eglDestroyContext(mEglDisplay, mEglContext); 305 if (!mEglContext.equals(mEgl.eglGetCurrentContext()) || 307 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) { 334 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig); 348 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
|
/frameworks/native/include/gui/ |
H A D | GLConsumer.h | 287 // to mEglDisplay and mEglContext. If the fields have been previously 468 // mEglContext is the OpenGL ES context with which this GLConsumer is 472 EGLContext mEglContext; member in class:android::GLConsumer
|
/frameworks/native/libs/gui/include/gui/ |
H A D | GLConsumer.h | 287 // to mEglDisplay and mEglContext. If the fields have been previously 468 // mEglContext is the OpenGL ES context with which this GLConsumer is 472 EGLContext mEglContext; member in class:android::GLConsumer
|
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/ |
H A D | BlockingGLTextureView.java | 112 EGLContext mEglContext; field in class:BlockingGLTextureView.EglHelper 176 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig); 178 if (mEglContext == null || mEglContext == EGL10.EGL_NO_CONTEXT) { 179 mEglContext = null; 233 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) { 249 return (GL10) mEglContext.getGL(); 278 if (mEglContext != null) { 279 mEgl.eglDestroyContext(mEglDisplay, mEglContext); 280 mEglContext [all...] |
/frameworks/base/services/core/java/com/android/server/display/ |
H A D | ColorFade.java | 90 private EGLContext mEglContext; field in class:ColorFade 551 if (mEglContext == null) { 556 mEglContext = EGL14.eglCreateContext(mEglDisplay, mEglConfig, 558 if (mEglContext == null) { 668 if (!EGL14.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) {
|
/frameworks/native/services/surfaceflinger/tests/hwc2/ |
H A D | Hwc2TestBuffer.cpp | 121 mEglContext(EGL_NO_CONTEXT) { } 176 mEglContext = eglCreateContext(mEglDisplay, configs[0], EGL_NO_CONTEXT, 178 if (mEglContext == EGL_NO_CONTEXT) { 193 if (!eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) { 204 eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext); 219 if (mEglContext != EGL_NO_CONTEXT) 220 eglDestroyContext(mEglDisplay, mEglContext); 231 EGLContext mEglContext; member in class:Hwc2TestEglManager
|
/frameworks/base/opengl/java/android/opengl/ |
H A D | GLSurfaceView.java | 1051 mEglContext = null; 1059 mEglContext = view.mEGLContextFactory.createContext(mEgl, mEglDisplay, mEglConfig); 1061 if (mEglContext == null || mEglContext == EGL10.EGL_NO_CONTEXT) { 1062 mEglContext = null; 1066 Log.w("EglHelper", "createContext " + mEglContext + " tid=" + Thread.currentThread().getId()); 1124 if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) { 1142 GL gl = mEglContext.getGL(); 1199 if (mEglContext != null) { 1202 view.mEGLContextFactory.destroyContext(mEgl, mEglDisplay, mEglContext); 1238 EGLContext mEglContext; field in class:GLSurfaceView.EglHelper [all...] |