Searched defs:mEglConfig (Results 1 - 10 of 10) sorted by relevance

/frameworks/av/cmds/screenrecord/
H A DEglWindow.h38 mEglConfig(NULL),
78 EGLConfig mEglConfig; member in class:android::EglWindow
/frameworks/base/libs/hwui/renderthread/
H A DEglManager.h78 EGLConfig mEglConfig; member in class:android::uirenderer::renderthread::EglManager
/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/tests/UiBench/src/com/android/test/uibench/opengl/
H A DImageFlipRenderThread.java96 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/native/libs/gui/tests/
H A DSurfaceTextureClient_test.cpp42 mEglConfig(NULL) {
76 mEglConfig = myConfig;
125 EGLConfig mEglConfig; member in class:android::SurfaceTextureClientTest
188 EGLSurface eglSurface = eglCreateWindowSurface(mEglDisplay, mEglConfig, mANW.get(), NULL);
/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/base/services/core/java/com/android/server/display/
H A DColorFade.java89 private EGLConfig mEglConfig; field in class:ColorFade
533 if (mEglConfig == null) {
555 mEglConfig = eglConfigs[0];
563 mEglContext = EGL14.eglCreateContext(mEglDisplay, mEglConfig,
617 mEglSurface = EGL14.eglCreateWindowSurface(mEglDisplay, mEglConfig, mSurface,
/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/packages/SystemUI/src/com/android/systemui/
H A DImageWallpaper.java122 private EGLConfig mEglConfig; field in class:ImageWallpaper.DrawableEngine
779 mEglConfig = chooseEglConfig();
780 if (mEglConfig == null) {
784 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig);
795 EGLSurface tmpSurface = mEgl.eglCreatePbufferSurface(mEglDisplay, mEglConfig, attribs);
814 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, surfaceHolder, null);
/frameworks/base/opengl/java/android/opengl/
H A DGLSurfaceView.java1050 mEglConfig = null;
1053 mEglConfig = view.mEGLConfigChooser.chooseConfig(mEgl, mEglDisplay);
1059 mEglContext = view.mEGLContextFactory.createContext(mEgl, mEglDisplay, mEglConfig);
1091 if (mEglConfig == null) {
1092 throw new RuntimeException("mEglConfig not initialized");
1107 mEglDisplay, mEglConfig, view.getHolder());
1237 EGLConfig mEglConfig; field in class:GLSurfaceView.EglHelper
1539 view.mRenderer.onSurfaceCreated(gl, mEglHelper.mEglConfig);

Completed in 174 milliseconds