Re: [PATCH 1/4] input: Add core API to update the keymap

2013-10-07 Thread Daniel Stone
Hi, On 7 October 2013 14:32, Rui Matos wrote: > @@ -1623,6 +1623,44 @@ weston_compositor_xkb_destroy(struct weston_compositor > *ec) > } > #endif > > +WL_EXPORT void > +weston_seat_update_keyboard(struct weston_seat *seat, struct xkb_keymap > *keymap) This should be weston_seat_update_keymap

[PATCH 1/4] input: Add core API to update the keymap

2013-10-07 Thread Rui Matos
How and when to update the keymap is left to each backend. --- src/compositor.h | 2 ++ src/input.c | 38 ++ 2 files changed, 40 insertions(+) diff --git a/src/compositor.h b/src/compositor.h index a19d966..041758a 100644 --- a/src/compositor.h +++ b/src/