Searched refs:mEglConfig (Results 1 - 12 of 12) sorted by relevance

/frameworks/av/cmds/screenrecord/
H A DEglWindow.h38 mEglConfig(NULL),
78 EGLConfig mEglConfig; member in class:android::EglWindow
H A DEglWindow.cpp53 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/libs/hwui/renderthread/
H A DEglManager.cpp70 , mEglConfig(0)
135 if (!eglChooseConfig(mEglDisplay, attribs, &mEglConfig, num_configs, &num_configs)
151 mEglContext = eglCreateContext(mEglDisplay, mEglConfig, EGL_NO_CONTEXT, attribs);
189 mPBufferSurface = eglCreatePbufferSurface(mEglDisplay, mEglConfig, attribs);
196 EGLSurface surface = eglCreateWindowSurface(mEglDisplay, mEglConfig, window, NULL);
H A DEglManager.h72 EGLConfig mEglConfig; member in class:android::uirenderer::renderthread::EglManager
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DBlockingGLTextureView.java111 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/native/libs/gui/tests/
H A DSRGB_test.cpp51 mEglDisplay(EGL_NO_DISPLAY), mEglConfig(),
232 EGLConfig mEglConfig; member in class:android::SRGBTest
260 EXPECT_TRUE(eglChooseConfig(mEglDisplay, configAttribs, &mEglConfig, 1,
269 mEglContext = eglCreateContext(mEglDisplay, mEglConfig, EGL_NO_CONTEXT,
274 mEglSurface = eglCreateWindowSurface(mEglDisplay, mEglConfig,
442 mEglSurface = eglCreateWindowSurface(mEglDisplay, mEglConfig,
H A DSurfaceTextureClient_test.cpp71 mEglConfig = myConfig;
120 EGLConfig mEglConfig; member in class:android::SurfaceTextureClientTest
183 EGLSurface eglSurface = eglCreateWindowSurface(mEglDisplay, mEglConfig, mANW.get(), NULL);
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DGLTextureViewActivity.java142 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/SystemUI/src/com/android/systemui/
H A DImageWallpaper.java124 private EGLConfig mEglConfig; field in class:ImageWallpaper.DrawableEngine
669 mEglConfig = chooseEglConfig();
670 if (mEglConfig == null) {
674 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig);
685 EGLSurface tmpSurface = mEgl.eglCreatePbufferSurface(mEglDisplay, mEglConfig, attribs);
704 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, surfaceHolder, null);
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DRenderTarget.java59 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 DColorFade.java91 private EGLConfig mEglConfig; field in class:ColorFade
515 if (mEglConfig == null) {
532 mEglConfig = eglConfigs[0];
540 mEglContext = EGL14.eglCreateContext(mEglDisplay, mEglConfig,
594 mEglSurface = EGL14.eglCreateWindowSurface(mEglDisplay, mEglConfig, mSurface,
/frameworks/base/opengl/java/android/opengl/
H A DGLSurfaceView.java1020 mEglConfig = null;
1023 mEglConfig = view.mEGLConfigChooser.chooseConfig(mEgl, mEglDisplay);
1029 mEglContext = view.mEGLContextFactory.createContext(mEgl, mEglDisplay, mEglConfig);
1061 if (mEglConfig == null) {
1062 throw new RuntimeException("mEglConfig not initialized");
1077 mEglDisplay, mEglConfig, view.getHolder());
1207 EGLConfig mEglConfig; field in class:GLSurfaceView.EglHelper
1500 view.mRenderer.onSurfaceCreated(gl, mEglHelper.mEglConfig);

Completed in 833 milliseconds