Home | History | Annotate | Download | only in jni

Lines Matching refs:sEglDisplay

68 static EGLDisplay sEglDisplay = EGL_NO_DISPLAY;
125 sEglDisplay = eglGetDisplay(sDisplay);
126 success = eglInitialize(sEglDisplay, &majorVersion, &minorVersion);
128 success = eglGetConfigs(sEglDisplay, NULL, 0, &numConfigs);
130 success = eglChooseConfig(sEglDisplay, configAttribs,
134 sEglContext = eglCreateContext(sEglDisplay, sEglConfig, NULL, NULL);
146 eglGetConfigAttrib(sEglDisplay, sEglConfig,
170 sEglSurface = eglCreateWindowSurface(sEglDisplay, sEglConfig,
176 success = eglMakeCurrent(sEglDisplay, sEglSurface,
188 eglMakeCurrent(sEglDisplay, NULL, NULL, NULL);
189 eglDestroyContext(sEglDisplay, sEglContext);
190 eglDestroySurface(sEglDisplay, sEglSurface);
191 eglTerminate(sEglDisplay);
238 eglSwapBuffers(sEglDisplay, sEglSurface);