Searched defs:eglConfig (Results 1 - 3 of 3) sorted by relevance
/packages/apps/LegacyCamera/src/com/android/camera/panorama/ |
H A D | MosaicRendererSurfaceView.java | 102 public EGLContext createContext(EGL10 egl, EGLDisplay display, EGLConfig eglConfig) { argument 107 display, eglConfig, EGL10.EGL_NO_CONTEXT, attribList);
|
/packages/apps/Gallery2/src/com/android/photos/views/ |
H A D | BlockingGLTextureView.java | 140 EGLContext createContext(EGL10 egl, EGLDisplay eglDisplay, EGLConfig eglConfig) { argument 142 return egl.eglCreateContext(eglDisplay, eglConfig, EGL10.EGL_NO_CONTEXT, attribList);
|
/packages/screensavers/Basic/src/com/android/dreams/basic/ |
H A D | ColorsGLRenderer.java | 169 EGLConfig eglConfig = chooseEglConfig(); 170 if (eglConfig == null) { 171 throw new RuntimeException("eglConfig not initialized"); 174 mEglContext = createContext(mEgl, mEglDisplay, eglConfig); 176 mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, eglConfig, mSurface, null); 199 private static EGLContext createContext(EGL10 egl, EGLDisplay eglDisplay, EGLConfig eglConfig) { argument 201 return egl.eglCreateContext(eglDisplay, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list);
|
Completed in 160 milliseconds