aboutsummaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2021-01-25 11:40:40 +0100
committerGerd Hoffmann <kraxel@redhat.com>2021-01-27 09:47:02 +0100
commitd239726c53fd9d3b5e6a89c5a22ed57d8ab0a9aa (patch)
treea72338168cbb51cc650eb92e21ce9fd41f199fae /ui
parent9cd69f1a270235b652766f00b94114f48a2d603f (diff)
downloadqemu-d239726c53fd9d3b5e6a89c5a22ed57d8ab0a9aa.zip
qemu-d239726c53fd9d3b5e6a89c5a22ed57d8ab0a9aa.tar.gz
qemu-d239726c53fd9d3b5e6a89c5a22ed57d8ab0a9aa.tar.bz2
Revert "vnc: move initialization to framebuffer_update_request"
This reverts commit 9e1632ad07ca49de99da4bb231e9e2f22f2d8df5. Older gtk-vnc versions can't deal with non-incremental update requests sending pseudo-encodings, so trying to send full server state (including desktop size, cursor etc. which is done using pseudo-encodings) doesn't fly. Return to old behavior to send those only for new connects and when changes happen. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Tested-by: Laszlo Ersek <lersek@redhat.com> Message-Id: <20210125104041.495274-2-kraxel@redhat.com>
Diffstat (limited to 'ui')
-rw-r--r--ui/vnc.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/ui/vnc.c b/ui/vnc.c
index 66f7c1b..2622f82 100644
--- a/ui/vnc.c
+++ b/ui/vnc.c
@@ -687,6 +687,10 @@ static void vnc_desktop_resize(VncState *vs)
!vnc_has_feature(vs, VNC_FEATURE_RESIZE_EXT))) {
return;
}
+ if (vs->client_width == pixman_image_get_width(vs->vd->server) &&
+ vs->client_height == pixman_image_get_height(vs->vd->server)) {
+ return;
+ }
assert(pixman_image_get_width(vs->vd->server) < 65536 &&
pixman_image_get_width(vs->vd->server) >= 0);
@@ -2042,10 +2046,6 @@ static void framebuffer_update_request(VncState *vs, int incremental,
} else {
vs->update = VNC_STATE_UPDATE_FORCE;
vnc_set_area_dirty(vs->dirty, vs->vd, x, y, w, h);
- vnc_colordepth(vs);
- vnc_desktop_resize(vs);
- vnc_led_state_change(vs);
- vnc_cursor_define(vs);
}
}
@@ -2189,7 +2189,10 @@ static void set_encodings(VncState *vs, int32_t *encodings, size_t n_encodings)
break;
}
}
+ vnc_desktop_resize(vs);
check_pointer_type_change(&vs->mouse_mode_notifier, NULL);
+ vnc_led_state_change(vs);
+ vnc_cursor_define(vs);
}
static void set_pixel_conversion(VncState *vs)