Home | History | Annotate | Download | only in OGLES2

Lines Matching defs:eglDisplay

128 	EGLDisplay			eglDisplay	= 0;

206 eglDisplay = eglGetDisplay(hDC);
208 if(eglDisplay == EGL_NO_DISPLAY)
209 eglDisplay = eglGetDisplay((EGLNativeDisplayType) EGL_DEFAULT_DISPLAY);
220 if (!eglInitialize(eglDisplay, &iMajorVersion, &iMinorVersion))
264 if (!eglChooseConfig(eglDisplay, pi32ConfigAttribs, &eglConfig, 1, &iConfigs) || (iConfigs != 1))
279 eglSurface = eglCreateWindowSurface(eglDisplay, eglConfig, eglWindow, NULL);
284 eglSurface = eglCreateWindowSurface(eglDisplay, eglConfig, NULL, NULL);
299 eglContext = eglCreateContext(eglDisplay, eglConfig, NULL, ai32ContextAttribs);
315 eglMakeCurrent(eglDisplay, eglSurface, eglSurface, eglContext);
482 eglSwapBuffers(eglDisplay, eglSurface);
511 eglMakeCurrent(eglDisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, EGL_NO_CONTEXT);
512 eglTerminate(eglDisplay);