Expose _gdk_window_process_updates_recurse for backends

We use this in the added windowing function
_gdk_windowing_window_process_updates_recurse. The X11 implementation
just calls _gdk_window_process_updates_recurse directly, but at least
quartz will need to do some more work.
This commit is contained in:
Richard Hult
2009-01-26 19:12:54 +01:00
committed by Alexander Larsson
parent 72d4403eed
commit 1ee03b35d0
3 changed files with 17 additions and 5 deletions

View File

@ -5512,6 +5512,13 @@ _gdk_windowing_window_set_composited (GdkWindow *window,
#endif
}
void
_gdk_windowing_window_process_updates_recurse (GdkWindow *window,
GdkRegion *region)
{
_gdk_window_process_updates_recurse (window, expose_region);
}
static void
gdk_window_impl_iface_init (GdkWindowImplIface *iface)
{