diff options
author | George Sapountzis <gsapountzis@gmail.com> | 2010-03-19 02:38:09 +0200 |
---|---|---|
committer | George Sapountzis <gsapountzis@gmail.com> | 2010-03-21 13:21:45 +0200 |
commit | 2d1641b1917309d6397a6c9c773b801eb83838f8 (patch) | |
tree | 752b52a0def508582affcd4bc2cadeb553e38837 | |
parent | c48226e81d6a070a4bbaf42e0a310a868bcbe935 (diff) |
glx: swapBuffers prototype has changed
-rw-r--r-- | src/glx/drisw_glx.c | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/glx/drisw_glx.c b/src/glx/drisw_glx.c index 1b94a56fd1..93826bc682 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 |