Lines Matching refs:egldisplay
334 p_display->egldisplay = eglGetDisplay(p_display->p_display); in init_egl()
336 if (!eglInitialize(p_display->egldisplay, &iMajor, &iMinor)) in init_egl()
348 if (!eglChooseConfig(p_display->egldisplay, argb_config_attribs, in init_egl()
355 p_display->eglcontext = eglCreateContext(p_display->egldisplay, in init_egl()
363 if (!eglMakeCurrent(p_display->egldisplay, NULL, NULL, in init_egl()
376 eglMakeCurrent(p_display->egldisplay, EGL_NO_SURFACE, EGL_NO_SURFACE, in finish_egl()
379 eglTerminate(p_display->egldisplay); in finish_egl()
395 p_window->p_display->egldisplay, p_window->p_display->eglconfig, in window_create_surface()
398 eglMakeCurrent(p_window->p_display->egldisplay, p_window->eglsurface, in window_create_surface()
432 eglSwapBuffers(p_window->p_display->egldisplay, p_window->eglsurface); in idle_redraw()
493 if (!eglMakeCurrent(p_display->egldisplay, p_window->eglsurface, in DisplayAcquireWindowSurface()