HomeSort by relevance Sort by last modified time
    Searched refs:mEglConfig (Results 1 - 21 of 21) sorted by null

  /frameworks/av/cmds/screenrecord/
EglWindow.h 38 mEglConfig(NULL),
78 EGLConfig mEglConfig;
EglWindow.cpp 52 mEglSurface = eglCreateWindowSurface(mEglDisplay, mEglConfig, anw.get(),
81 mEglSurface = eglCreatePbufferSurface(mEglDisplay, mEglConfig, pbufferAttribs);
138 &mEglConfig, 1, &numConfigs);
148 mEglContext = eglCreateContext(mEglDisplay, mEglConfig, EGL_NO_CONTEXT,
176 mEglConfig = NULL;
  /cts/tests/tests/graphics/src/android/graphics/cts/
ASurfaceTextureTest.java 49 private EGLConfig mEglConfig = null;
78 mEglConfig = configs[0];
80 mEglPbuffer = EGL14.eglCreatePbufferSurface(mEglDisplay, mEglConfig,
86 mEglContext = EGL14.eglCreateContext(mEglDisplay, mEglConfig, EGL_NO_CONTEXT,
SyncTest.java 69 private EGLConfig mEglConfig = null;
94 mEglConfig = configs[0];
ANativeWindowTest.java 51 private EGLConfig mEglConfig = null;
80 mEglConfig = configs[0];
82 mEglPbuffer = EGL14.eglCreatePbufferSurface(mEglDisplay, mEglConfig,
88 mEglContext = EGL14.eglCreateContext(mEglDisplay, mEglConfig, EGL_NO_CONTEXT,
  /packages/apps/Camera2/src/com/android/camera/
SurfaceTextureRenderer.java 40 private EGLConfig mEglConfig;
128 mEglConfig = chooseConfig(mEgl, mEglDisplay);
130 mEglDisplay, mEglConfig, EGL10.EGL_NO_CONTEXT, attribList);
136 mEglDisplay, mEglConfig, target, null);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
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);
GLTextureViewActivity.java 142 private EGLConfig mEglConfig;
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/
BlockingGLTextureView.java 111 EGLConfig mEglConfig;
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);
  /packages/apps/Gallery2/src/com/android/photos/views/
BlockingGLTextureView.java 111 EGLConfig mEglConfig;
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/
EglManager.h 78 EGLConfig mEglConfig;
EglManager.cpp 91 , mEglConfig(nullptr)
204 if (!eglChooseConfig(mEglDisplay, attribs, &mEglConfig, numConfigs, &numConfigs) ||
262 mEglDisplay, EglExtensions.noConfigContext ? ((EGLConfig) nullptr) : mEglConfig,
274 mPBufferSurface = eglCreatePbufferSurface(mEglDisplay, mEglConfig, attribs);
326 mEglDisplay, wideColorGamut ? mEglConfigWideGamut : mEglConfig, window, attribs);
  /cts/tests/tests/view/src/android/view/cts/
TextureViewCtsActivity.java 77 private EGLConfig mEglConfig;
375 mEglConfig = chooseEglConfig();
376 if (mEglConfig == null) {
380 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig);
382 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig,
  /frameworks/base/tests/UiBench/src/com/android/test/uibench/opengl/
ImageFlipRenderThread.java 96 private EGLConfig mEglConfig;
329 mEglConfig = chooseEglConfig();
330 if (mEglConfig == null) {
334 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig);
336 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, mSurface, null);
  /packages/apps/Nfc/src/com/android/nfc/beam/
FireflyRenderer.java 160 EGLConfig mEglConfig;
308 mEglConfig = chooseEglConfig();
309 if (mEglConfig == null) {
314 mEglContext = mEgl.eglCreateContext(mEglDisplay, mEglConfig, EGL10.EGL_NO_CONTEXT, null);
316 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, mSurface, null);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
RenderTarget.java 59 private static EGLConfig mEglConfig = null;
320 if (mEglConfig == null || !display.equals(mConfiguredDisplay)) {
328 mEglConfig = configs[0];
332 return mEglConfig;
  /frameworks/base/services/core/java/com/android/server/display/
ColorFade.java 89 private EGLConfig mEglConfig;
526 if (mEglConfig == null) {
548 mEglConfig = eglConfigs[0];
556 mEglContext = EGL14.eglCreateContext(mEglDisplay, mEglConfig,
612 mEglSurface = EGL14.eglCreateWindowSurface(mEglDisplay, mEglConfig, mSurface,
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
GLSurfaceViewCustom.java     [all...]
  /frameworks/base/opengl/java/android/opengl/
GLSurfaceView.java     [all...]
  /external/replicaisland/src/com/replica/replicaisland/
GLSurfaceView.java     [all...]
  /frameworks/native/libs/gui/tests/
SurfaceTextureClient_test.cpp 42 mEglConfig(NULL) {
76 mEglConfig = myConfig;
125 EGLConfig mEglConfig;
188 EGLSurface eglSurface = eglCreateWindowSurface(mEglDisplay, mEglConfig, mANW.get(), NULL);

Completed in 836 milliseconds