Home
last modified time | relevance | path

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

/frameworks/av/cmds/screenrecord/
DEglWindow.cpp52 mEglSurface = eglCreateWindowSurface(mEglDisplay, mEglConfig, anw.get(), in createWindow()
81 mEglSurface = eglCreatePbufferSurface(mEglDisplay, mEglConfig, pbufferAttribs); in createPbuffer()
138 &mEglConfig, 1, &numConfigs); in eglSetupContext()
148 mEglContext = eglCreateContext(mEglDisplay, mEglConfig, EGL_NO_CONTEXT, in eglSetupContext()
176 mEglConfig = NULL; in eglRelease()
DEglWindow.h38 mEglConfig(NULL), in EglWindow()
78 EGLConfig mEglConfig; variable
/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DSingleFrameTextureViewTestActivity.java86 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()
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/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.cpp88 , mEglConfig(nullptr) in EglManager()
244 mEglConfig = load8BitsConfig(mEglDisplay, mSwapBehavior); in loadConfigs()
245 if (mEglConfig == EGL_NO_CONFIG_KHR) { in loadConfigs()
250 mEglConfig = load8BitsConfig(mEglDisplay, mSwapBehavior); in loadConfigs()
282 mEglDisplay, EglExtensions.noConfigContext ? ((EGLConfig) nullptr) : mEglConfig, in createContext()
294 mPBufferSurface = eglCreatePbufferSurface(mEglDisplay, mEglConfig, attribs); in createPBufferSurface()
298 mEglDisplay, mEglConfig, eglErrorString()); in createPBufferSurface()
353 mEglDisplay, wideColorGamut ? mEglConfigWideGamut : mEglConfig, window, attribs); in createSurface()
DEglManager.h100 EGLConfig mEglConfig; variable
/frameworks/base/packages/SystemUI/src/com/android/systemui/glwallpaper/
DEglHelper.java92 private EGLConfig mEglConfig; field in EglHelper
122 mEglConfig = chooseEglConfig(); in init()
123 if (mEglConfig == null) { in init()
239 return eglCreateWindowSurface(mEglDisplay, mEglConfig, holder, attrs, offset); in askCreatingEglWindowSurface()
280 mEglContext = eglCreateContext(mEglDisplay, mEglConfig, EGL_NO_CONTEXT, attrib_list, 0); in createEglContext()
/frameworks/base/tests/UiBench/src/com/android/test/uibench/opengl/
DImageFlipRenderThread.java96 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/
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.java95 private EGLConfig mEglConfig; field in ColorFade
543 if (mEglConfig == null) {
565 mEglConfig = eglConfigs[0];
573 mEglContext = EGL14.eglCreateContext(mEglDisplay, mEglConfig,
632 mEglSurface = EGL14.eglCreateWindowSurface(mEglDisplay, mEglConfig, mSurface,
/frameworks/base/opengl/java/android/opengl/
DGLSurfaceView.java1051 mEglConfig = null; in start()
1054 mEglConfig = view.mEGLConfigChooser.chooseConfig(mEgl, mEglDisplay); in start()
1060 mEglContext = view.mEGLContextFactory.createContext(mEgl, mEglDisplay, mEglConfig); in start()
1092 if (mEglConfig == null) { in createSurface()
1108 mEglDisplay, mEglConfig, view.getHolder()); in createSurface()
1238 EGLConfig mEglConfig; field in GLSurfaceView.EglHelper
1541 view.mRenderer.onSurfaceCreated(gl, mEglHelper.mEglConfig); in guardedRun()
/frameworks/native/libs/gui/tests/
DSurfaceTextureClient_test.cpp39 mEglConfig(nullptr) { in SurfaceTextureClientTest()
73 mEglConfig = myConfig; in SetUp()
122 EGLConfig mEglConfig; member in android::SurfaceTextureClientTest
185 EGLSurface eglSurface = eglCreateWindowSurface(mEglDisplay, mEglConfig, mANW.get(), nullptr); in TEST_F()