summary refs log tree commit diff stats
path: root/ui/vnc.c
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2012-10-11 12:11:27 +0200
committerGerd Hoffmann <kraxel@redhat.com>2012-11-01 14:00:05 +0100
commit94362682d31eb7c9bfd6bf74cd615d0616a09361 (patch)
treeb9560dd0c06116a0a91918cbf8efb96bcc822c19 /ui/vnc.c
parent47683d669f993308c2b84bed4ce64aafb5d7ced4 (diff)
downloadfocaccia-qemu-94362682d31eb7c9bfd6bf74cd615d0616a09361.tar.gz
focaccia-qemu-94362682d31eb7c9bfd6bf74cd615d0616a09361.zip
pixman/vnc: remove dead code.
Switching the vnc server framebuffer to use 32bpp unconditionally
turns the code bits which handle 8 and 16 bpp into dead code.
Remove them.

Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'ui/vnc.c')
-rw-r--r--ui/vnc.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/ui/vnc.c b/ui/vnc.c
index 15aef86047..7c120e6f06 100644
--- a/ui/vnc.c
+++ b/ui/vnc.c
@@ -666,24 +666,6 @@ static void vnc_write_pixels_generic(VncState *vs,
             vnc_convert_pixel(vs, buf, pixels[i]);
             vnc_write(vs, buf, vs->client_pf.bytes_per_pixel);
         }
-    } else if (VNC_SERVER_FB_BYTES == 2) {
-        uint16_t *pixels = pixels1;
-        int n, i;
-        n = size >> 1;
-        for (i = 0; i < n; i++) {
-            vnc_convert_pixel(vs, buf, pixels[i]);
-            vnc_write(vs, buf, vs->client_pf.bytes_per_pixel);
-        }
-    } else if (VNC_SERVER_FB_BYTES == 1) {
-        uint8_t *pixels = pixels1;
-        int n, i;
-        n = size;
-        for (i = 0; i < n; i++) {
-            vnc_convert_pixel(vs, buf, pixels[i]);
-            vnc_write(vs, buf, vs->client_pf.bytes_per_pixel);
-        }
-    } else {
-        fprintf(stderr, "%s: VncState color depth not supported\n", __func__);
     }
 }