Home
last modified time | relevance | path

Searched refs:eglDisplay (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/data/
DGlideFilmstripManager.java233 EGLDisplay eglDisplay = EGL14.eglGetDisplay(EGL14.EGL_DEFAULT_DISPLAY); in computeEglMaxTextureSize() local
235 EGL14.eglInitialize(eglDisplay, majorMinor, 0, majorMinor, 1); in computeEglMaxTextureSize()
246 EGL14.eglChooseConfig(eglDisplay, configAttr, 0, in computeEglMaxTextureSize()
262 EGLSurface eglSurface = EGL14.eglCreatePbufferSurface(eglDisplay, eglConfig, in computeEglMaxTextureSize()
271 EGLContext eglContext = EGL14.eglCreateContext(eglDisplay, eglConfig, EGL14.EGL_NO_CONTEXT, in computeEglMaxTextureSize()
273 EGL14.eglMakeCurrent(eglDisplay, eglSurface, eglSurface, eglContext); in computeEglMaxTextureSize()
281 EGL14.eglMakeCurrent(eglDisplay, EGL14.EGL_NO_SURFACE, EGL14.EGL_NO_SURFACE, in computeEglMaxTextureSize()
283 EGL14.eglDestroySurface(eglDisplay, eglSurface); in computeEglMaxTextureSize()
284 EGL14.eglDestroyContext(eglDisplay, eglContext); in computeEglMaxTextureSize()
285 EGL14.eglTerminate(eglDisplay); in computeEglMaxTextureSize()
/packages/apps/Gallery2/src/com/android/photos/views/
DBlockingGLTextureView.java140 EGLContext createContext(EGL10 egl, EGLDisplay eglDisplay, EGLConfig eglConfig) { in createContext() argument
142 return egl.eglCreateContext(eglDisplay, eglConfig, EGL10.EGL_NO_CONTEXT, attribList); in createContext()
/packages/screensavers/Basic/src/com/android/dreams/basic/
DColorsGLRenderer.java200 private static EGLContext createContext(EGL10 egl, EGLDisplay eglDisplay, EGLConfig eglConfig) { in createContext() argument
202 return egl.eglCreateContext(eglDisplay, eglConfig, EGL10.EGL_NO_CONTEXT, attrib_list); in createContext()