Home
last modified time | relevance | path

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

/frameworks/av/cmds/screenrecord/
DEglWindow.cpp53 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()
DEglWindow.h38 mEglConfig(NULL), in EglWindow()
78 EGLConfig mEglConfig; variable
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
DBlockingGLTextureView.java111 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/
DEglManager.cpp75 , mEglConfig(nullptr) in EglManager()
129 if (!eglChooseConfig(mEglDisplay, attribs, &mEglConfig, num_configs, &num_configs) in loadConfig()
145 mEglContext = eglCreateContext(mEglDisplay, mEglConfig, EGL_NO_CONTEXT, attribs); in createContext()
182 mPBufferSurface = eglCreatePbufferSurface(mEglDisplay, mEglConfig, attribs); in createPBufferSurface()
188 EGLSurface surface = eglCreateWindowSurface(mEglDisplay, mEglConfig, window, nullptr); in createSurface()
DEglManager.h73 EGLConfig mEglConfig; variable
/frameworks/native/libs/gui/tests/
DSRGB_test.cpp57 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()
DSurfaceTextureClient_test.cpp74 mEglConfig = myConfig; in SetUp()
123 EGLConfig mEglConfig; member in android::SurfaceTextureClientTest
186 EGLSurface eglSurface = eglCreateWindowSurface(mEglDisplay, mEglConfig, mANW.get(), NULL); in TEST_F()
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DGLTextureViewActivity.java142 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/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
DRenderTarget.java59 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/
DColorFade.java88 private EGLConfig mEglConfig; field in ColorFade
512 if (mEglConfig == null) {
529 mEglConfig = eglConfigs[0];
537 mEglContext = EGL14.eglCreateContext(mEglDisplay, mEglConfig,
591 mEglSurface = EGL14.eglCreateWindowSurface(mEglDisplay, mEglConfig, mSurface,
/frameworks/base/packages/SystemUI/src/com/android/systemui/
DImageWallpaper.java125 private EGLConfig mEglConfig; field in ImageWallpaper.DrawableEngine
700 mEglConfig = chooseEglConfig(); in initGL()
701 if (mEglConfig == null) { in initGL()
705 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig); in initGL()
716 EGLSurface tmpSurface = mEgl.eglCreatePbufferSurface(mEglDisplay, mEglConfig, attribs); in initGL()
735 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, surfaceHolder, null); in initGL()
/frameworks/base/opengl/java/android/opengl/
DGLSurfaceView.java1021 mEglConfig = null; in start()
1024 mEglConfig = view.mEGLConfigChooser.chooseConfig(mEgl, mEglDisplay); in start()
1030 mEglContext = view.mEGLContextFactory.createContext(mEgl, mEglDisplay, mEglConfig); in start()
1062 if (mEglConfig == null) { in createSurface()
1078 mEglDisplay, mEglConfig, view.getHolder()); in createSurface()
1208 EGLConfig mEglConfig; field in GLSurfaceView.EglHelper
1503 view.mRenderer.onSurfaceCreated(gl, mEglHelper.mEglConfig); in guardedRun()