mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
e76ba9a3c3
The update tracking code was ugly and using deprecated drawing APIs. It was also in the wrong place. So instead of trying to keep it working, I'll remove it. We need to find a better way to put it and make it work there.
23 lines
475 B
C
23 lines
475 B
C
#include "config.h"
|
|
#include "gdk-private.h"
|
|
|
|
GdkPrivateVTable *
|
|
gdk__private__ (void)
|
|
{
|
|
static GdkPrivateVTable table = {
|
|
gdk_device_grab_info,
|
|
gdk_display_open_default,
|
|
gdk_add_option_entries,
|
|
gdk_pre_parse,
|
|
gdk_gl_get_flags,
|
|
gdk_gl_set_flags,
|
|
gdk_window_freeze_toplevel_updates,
|
|
gdk_window_thaw_toplevel_updates,
|
|
gdk_display_get_rendering_mode,
|
|
gdk_display_set_rendering_mode,
|
|
gdk_window_move_to_rect
|
|
};
|
|
|
|
return &table;
|
|
}
|