mirror of
https://gitlab.com/marcandre.lureau/qemu-display.git
synced 2024-12-31 17:55:18 +00:00
qemu-vnc: add missing listener disable()
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
This commit is contained in:
parent
8b9a70505b
commit
39ee45661b
@ -247,6 +247,10 @@ impl ConsoleListenerHandler for ConsoleListener {
|
|||||||
inner.image = image_from_vec(s.format, s.width, s.height, s.stride, s.data);
|
inner.image = image_from_vec(s.format, s.width, s.height, s.stride, s.data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async fn disable(&mut self) {
|
||||||
|
dbg!();
|
||||||
|
}
|
||||||
|
|
||||||
async fn update(&mut self, u: qemu_display::Update) {
|
async fn update(&mut self, u: qemu_display::Update) {
|
||||||
let mut inner = self.server.inner.lock().unwrap();
|
let mut inner = self.server.inner.lock().unwrap();
|
||||||
let update = image_from_vec(u.format, u.w as _, u.h as _, u.stride, u.data);
|
let update = image_from_vec(u.format, u.w as _, u.h as _, u.stride, u.data);
|
||||||
|
Loading…
Reference in New Issue
Block a user