Re: [PATCH v3] input: Allow to choose console with qemu_input_is_absolute

2023-09-23 Thread Marc-André Lureau
On Thu, Sep 21, 2023 at 12:30 PM Akihiko Odaki wrote: > > Although an input is routed depending on the console, > qemu_input_is_absolute() had no mechanism to specify the console. > > Accept QemuConsole as an argument for qemu_input_is_absolute, and let > the display know the absolute/relative

Re: [PATCH v3] input: Allow to choose console with qemu_input_is_absolute

2023-09-21 Thread Philippe Mathieu-Daudé
On 21/9/23 10:29, Akihiko Odaki wrote: Although an input is routed depending on the console, qemu_input_is_absolute() had no mechanism to specify the console. Accept QemuConsole as an argument for qemu_input_is_absolute, and let the display know the absolute/relative state for a particular

[PATCH v3] input: Allow to choose console with qemu_input_is_absolute

2023-09-21 Thread Akihiko Odaki
Although an input is routed depending on the console, qemu_input_is_absolute() had no mechanism to specify the console. Accept QemuConsole as an argument for qemu_input_is_absolute, and let the display know the absolute/relative state for a particular console. Signed-off-by: Akihiko Odaki ---