From: George Sapountzis Date: Fri, 19 Mar 2010 00:38:09 +0000 (+0200) Subject: glx: swapBuffers prototype has changed X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2d1641b1917309d6397a6c9c773b801eb83838f8;p=mesa.git glx: swapBuffers prototype has changed --- diff --git a/src/glx/drisw_glx.c b/src/glx/drisw_glx.c index 1b94a56fd13..93826bc6825 100644 --- a/src/glx/drisw_glx.c +++ b/src/glx/drisw_glx.c @@ -334,10 +334,17 @@ driCreateDrawable(__GLXscreenConfigs * psc, return pdraw; } -static void -driSwapBuffers(__GLXDRIdrawable * pdraw) +static int64_t +driSwapBuffers(__GLXDRIdrawable * pdraw, + int64_t target_msc, int64_t divisor, int64_t remainder) { + (void) target_msc; + (void) divisor; + (void) remainder; + (*pdraw->psc->core->swapBuffers) (pdraw->driDrawable); + + return 0; } static void