seat/native: Add run impl task helper
Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2777>
This commit is contained in:
parent
ef64279035
commit
5a798989c4
@ -659,3 +659,17 @@ meta_seat_native_set_viewports (MetaSeatNative *seat,
|
||||
{
|
||||
meta_seat_impl_set_viewports (seat->impl, viewports);
|
||||
}
|
||||
|
||||
void
|
||||
meta_seat_native_run_impl_task (MetaSeatNative *seat,
|
||||
GSourceFunc dispatch_func,
|
||||
gpointer user_data,
|
||||
GDestroyNotify destroy_notify)
|
||||
{
|
||||
g_autoptr (GTask) task = NULL;
|
||||
|
||||
task = g_task_new (seat->impl, NULL, NULL, NULL);
|
||||
g_task_set_task_data (task, user_data, destroy_notify);
|
||||
meta_seat_impl_run_input_task (seat->impl, task,
|
||||
(GSourceFunc) dispatch_func);
|
||||
}
|
||||
|
@ -133,4 +133,9 @@ MetaCursorRenderer * meta_seat_native_maybe_ensure_cursor_renderer (MetaSeatNati
|
||||
void meta_seat_native_set_viewports (MetaSeatNative *seat,
|
||||
MetaViewportInfo *viewports);
|
||||
|
||||
void meta_seat_native_run_impl_task (MetaSeatNative *seat,
|
||||
GSourceFunc dispatch_func,
|
||||
gpointer user_data,
|
||||
GDestroyNotify destroy_notify);
|
||||
|
||||
#endif /* META_SEAT_NATIVE_H */
|
||||
|
Loading…
Reference in New Issue
Block a user