Remove invalidate_maybe_recurse and process_updates from the paintable interface

Replace them with two new functions
_gdk_windowing_{before,after}_process_all_updates() that are called
around the guts of gdk_window_process_all_updates(). Add empty ones
for X11 (nothing more needed), quartz ones will be implemented next.
This commit is contained in:
Richard Hult
2009-01-26 19:29:26 +01:00
committed by Alexander Larsson
parent 1ee03b35d0
commit 1a47356485
3 changed files with 24 additions and 27 deletions

View File

@ -5519,6 +5519,16 @@ _gdk_windowing_window_process_updates_recurse (GdkWindow *window,
_gdk_window_process_updates_recurse (window, expose_region);
}
void
_gdk_windowing_after_process_all_updates (void)
{
}
void
_gdk_windowing_after_process_all_updates (void)
{
}
static void
gdk_window_impl_iface_init (GdkWindowImplIface *iface)
{