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