diff options
| author | Corentin Chary <corentincj@iksaif.net> | 2011-02-04 09:05:56 +0100 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-02-23 16:28:28 -0600 |
| commit | 7d964c9d2fc614d2baa788b9e77019b32151f162 (patch) | |
| tree | e75c73bcf29eccac39d40170285401d1cc871053 /ui/vnc.h | |
| parent | 999342a0fe959dcd549396a255a04d000678e910 (diff) | |
| download | focaccia-qemu-7d964c9d2fc614d2baa788b9e77019b32151f162.tar.gz focaccia-qemu-7d964c9d2fc614d2baa788b9e77019b32151f162.zip | |
vnc: refresh lossy rect after a given timeout
If an adaptive encoding has choosen to send a lossy update based on the result of vnc_update_freq(), then it should advertise it with vnc_sent_lossy_rect(). This will allow to automatically refresh this rect once it's static again. Signed-off-by: Corentin Chary <corentincj@iksaif.net> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'ui/vnc.h')
| -rw-r--r-- | ui/vnc.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ui/vnc.h b/ui/vnc.h index c0e5ff30ba..57835f14bc 100644 --- a/ui/vnc.h +++ b/ui/vnc.h @@ -217,6 +217,8 @@ struct VncState DisplayState *ds; uint32_t dirty[VNC_MAX_HEIGHT][VNC_DIRTY_WORDS]; + uint8_t **lossy_rect; /* Not an Array to avoid costly memcpy in + * vnc-jobs-async.c */ VncDisplay *vd; int need_update; @@ -498,6 +500,7 @@ void vnc_framebuffer_update(VncState *vs, int x, int y, int w, int h, void vnc_convert_pixel(VncState *vs, uint8_t *buf, uint32_t v); double vnc_update_freq(VncState *vs, int x, int y, int w, int h); +void vnc_sent_lossy_rect(VncState *vs, int x, int y, int w, int h); /* Encodings */ int vnc_send_framebuffer_update(VncState *vs, int x, int y, int w, int h); |