diff options
| author | Brian Jackson <iggy@theiggy.com> | 2010-02-08 14:22:29 -0600 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-02-10 14:00:53 -0600 |
| commit | 3f54bfbf81bbd37171bbda2a2ee69ed5357ea8a7 (patch) | |
| tree | 54d12fe0c63434a375880826a93e828ea6edb103 | |
| parent | d6771bfa52744eb4f959198b4b0e59451463eebf (diff) | |
| download | focaccia-qemu-3f54bfbf81bbd37171bbda2a2ee69ed5357ea8a7.tar.gz focaccia-qemu-3f54bfbf81bbd37171bbda2a2ee69ed5357ea8a7.zip | |
Increase VNC_MAX_WIDTH
Increase VNC_MAX_WIDTH to match "commonly available" consumer level monitors available these days. This also closes KVM bug 2907597 Signed-off-by: Brian Jackson <iggy@theiggy.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
| -rw-r--r-- | vnc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vnc.h b/vnc.h index 92caf2f230..ff9a6993ad 100644 --- a/vnc.h +++ b/vnc.h @@ -69,7 +69,7 @@ typedef void VncSendHextileTile(VncState *vs, void *last_fg, int *has_bg, int *has_fg); -#define VNC_MAX_WIDTH 2048 +#define VNC_MAX_WIDTH 2560 #define VNC_MAX_HEIGHT 2048 #define VNC_DIRTY_WORDS (VNC_MAX_WIDTH / (16 * 32)) |