/frameworks/av/cmds/screenrecord/ |
D | EglWindow.cpp | 53 mEglSurface = eglCreateWindowSurface(mEglDisplay, mEglConfig, anw.get(), in createWindow() 82 mEglSurface = eglCreatePbufferSurface(mEglDisplay, mEglConfig, pbufferAttribs); in createPbuffer() 139 &mEglConfig, 1, &numConfigs); in eglSetupContext() 149 mEglContext = eglCreateContext(mEglDisplay, mEglConfig, EGL_NO_CONTEXT, in eglSetupContext() 177 mEglConfig = NULL; in eglRelease()
|
D | EglWindow.h | 38 mEglConfig(NULL), in EglWindow() 78 EGLConfig mEglConfig; variable
|
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/ |
D | SingleFrameTextureViewTestActivity.java | 86 private EGLConfig mEglConfig; in onSurfaceTextureAvailable() 140 mEglConfig = chooseEglConfig(); in onSurfaceTextureAvailable() 141 if (mEglConfig == null) { in onSurfaceTextureAvailable() 145 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig); in onSurfaceTextureAvailable() 147 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, surface, null); in onSurfaceTextureAvailable()
|
D | GLTextureViewActivity.java | 142 private EGLConfig mEglConfig; field in GLTextureViewActivity.RenderThread 376 mEglConfig = chooseEglConfig(); in initGL() 377 if (mEglConfig == null) { in initGL() 381 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig); in initGL() 383 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, mSurface, null); in initGL()
|
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/ |
D | BlockingGLTextureView.java | 111 EGLConfig mEglConfig; field in BlockingGLTextureView.EglHelper 170 mEglConfig = chooseEglConfig(); in start() 176 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig); in start() 202 if (mEglConfig == null) { in createSurface() 216 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, surface, null); in createSurface() 400 mRenderer.onSurfaceCreated(mGL, mEglHelper.mEglConfig); in handleMessageLocked()
|
/frameworks/base/libs/hwui/renderthread/ |
D | EglManager.cpp | 91 , mEglConfig(nullptr) in EglManager() 165 if (!eglChooseConfig(mEglDisplay, attribs, &mEglConfig, num_configs, &num_configs) in loadConfig() 184 mEglContext = eglCreateContext(mEglDisplay, mEglConfig, EGL_NO_CONTEXT, attribs); in createContext() 221 mPBufferSurface = eglCreatePbufferSurface(mEglDisplay, mEglConfig, attribs); in createPBufferSurface() 227 EGLSurface surface = eglCreateWindowSurface(mEglDisplay, mEglConfig, window, nullptr); in createSurface()
|
D | EglManager.h | 103 EGLConfig mEglConfig; variable
|
/frameworks/native/libs/gui/tests/ |
D | SRGB_test.cpp | 57 mEglDisplay(EGL_NO_DISPLAY), mEglConfig(), in SRGBTest() 239 EGLConfig mEglConfig; member in android::SRGBTest 267 EXPECT_TRUE(eglChooseConfig(mEglDisplay, configAttribs, &mEglConfig, 1, in createEGLSurface() 276 mEglContext = eglCreateContext(mEglDisplay, mEglConfig, EGL_NO_CONTEXT, in createEGLSurface() 281 mEglSurface = eglCreateWindowSurface(mEglDisplay, mEglConfig, in createEGLSurface() 453 mEglSurface = eglCreateWindowSurface(mEglDisplay, mEglConfig, in TEST_F()
|
D | SurfaceTextureClient_test.cpp | 41 mEglConfig(NULL) { in SurfaceTextureClientTest() 75 mEglConfig = myConfig; in SetUp() 124 EGLConfig mEglConfig; member in android::SurfaceTextureClientTest 187 EGLSurface eglSurface = eglCreateWindowSurface(mEglDisplay, mEglConfig, mANW.get(), NULL); in TEST_F()
|
/frameworks/base/tests/UiBench/src/com/android/test/uibench/opengl/ |
D | ImageFlipRenderThread.java | 96 private EGLConfig mEglConfig; field in ImageFlipRenderThread 329 mEglConfig = chooseEglConfig(); in initGL() 330 if (mEglConfig == null) { in initGL() 334 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig); in initGL() 336 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, mSurface, null); in initGL()
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
D | RenderTarget.java | 59 private static EGLConfig mEglConfig = null; field in RenderTarget 320 if (mEglConfig == null || !display.equals(mConfiguredDisplay)) { in chooseEglConfig() 328 mEglConfig = configs[0]; in chooseEglConfig() 332 return mEglConfig; in chooseEglConfig()
|
/frameworks/base/services/core/java/com/android/server/display/ |
D | ColorFade.java | 89 private EGLConfig mEglConfig; field in ColorFade 533 if (mEglConfig == null) { 550 mEglConfig = eglConfigs[0]; 558 mEglContext = EGL14.eglCreateContext(mEglDisplay, mEglConfig, 612 mEglSurface = EGL14.eglCreateWindowSurface(mEglDisplay, mEglConfig, mSurface,
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
D | ImageWallpaper.java | 128 private EGLConfig mEglConfig; field in ImageWallpaper.DrawableEngine 754 mEglConfig = chooseEglConfig(); in initGL() 755 if (mEglConfig == null) { in initGL() 759 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig); in initGL() 770 EGLSurface tmpSurface = mEgl.eglCreatePbufferSurface(mEglDisplay, mEglConfig, attribs); in initGL() 789 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, surfaceHolder, null); in initGL()
|
/frameworks/base/opengl/java/android/opengl/ |
D | GLSurfaceView.java | 1033 mEglConfig = null; in start() 1036 mEglConfig = view.mEGLConfigChooser.chooseConfig(mEgl, mEglDisplay); in start() 1042 mEglContext = view.mEGLContextFactory.createContext(mEgl, mEglDisplay, mEglConfig); in start() 1074 if (mEglConfig == null) { in createSurface() 1090 mEglDisplay, mEglConfig, view.getHolder()); in createSurface() 1220 EGLConfig mEglConfig; field in GLSurfaceView.EglHelper 1521 view.mRenderer.onSurfaceCreated(gl, mEglHelper.mEglConfig); in guardedRun()
|