Module: Mesa Branch: master Commit: 31d2786239d7d4c5d73d2a39c01d55975b6c901c URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=31d2786239d7d4c5d73d2a39c01d55975b6c901c
Author: Chia-I Wu <[email protected]> Date: Tue Jan 12 17:49:43 2010 +0800 egl_xdri: Fix build breakage. driScreen->swapBuffers takes 3 more arguments since daf7fe69f7bd0caa955d30b43fc35b7ce0069b6b. --- src/egl/drivers/xdri/egl_xdri.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/egl/drivers/xdri/egl_xdri.c b/src/egl/drivers/xdri/egl_xdri.c index d2affc6..0f0a9af 100644 --- a/src/egl/drivers/xdri/egl_xdri.c +++ b/src/egl/drivers/xdri/egl_xdri.c @@ -562,7 +562,7 @@ xdri_eglSwapBuffers(_EGLDriver *drv, _EGLDisplay *dpy, _EGLSurface *draw) struct xdri_egl_display *xdri_dpy = lookup_display(dpy); struct xdri_egl_surface *xdri_surf = lookup_surface(draw); - xdri_dpy->psc->driScreen->swapBuffers(xdri_surf->driDrawable); + xdri_dpy->psc->driScreen->swapBuffers(xdri_surf->driDrawable, 0, 0, 0); return EGL_TRUE; } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
