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

/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/services/java/com/android/server/power/
H A DElectronBeam.java86 private EGLConfig mEglConfig; field in class:ElectronBeam
481 if (mEglConfig == null) {
496 mEglConfig = eglConfigs[0];
503 mEglContext = EGL14.eglCreateContext(mEglDisplay, mEglConfig,
563 mEglSurface = EGL14.eglCreateWindowSurface(mEglDisplay, mEglConfig, mSurface,
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DImageWallpaper.java125 private EGLConfig mEglConfig; field in class:ImageWallpaper.DrawableEngine
637 mEglConfig = chooseEglConfig();
638 if (mEglConfig == null) {
642 mEglContext = createContext(mEgl, mEglDisplay, mEglConfig);
644 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, surfaceHolder, null);
/frameworks/base/opengl/java/android/opengl/
H A DGLSurfaceView.java1021 mEglConfig = null;
1024 mEglConfig = view.mEGLConfigChooser.chooseConfig(mEgl, mEglDisplay);
1030 mEglContext = view.mEGLContextFactory.createContext(mEgl, mEglDisplay, mEglConfig);
1062 if (mEglConfig == null) {
1063 throw new RuntimeException("mEglConfig not initialized");
1078 mEglDisplay, mEglConfig, view.getHolder());
1208 EGLConfig mEglConfig; field in class:GLSurfaceView.EglHelper
1494 view.mRenderer.onSurfaceCreated(gl, mEglHelper.mEglConfig);

Completed in 145 milliseconds