]> source.dussan.org Git - tigervnc.git/commitdiff
Add more 8 bpp conversion tests
authorPierre Ossman <ossman@cendio.se>
Wed, 9 Jul 2014 12:12:12 +0000 (14:12 +0200)
committerPierre Ossman <ossman@cendio.se>
Wed, 9 Jul 2014 12:16:08 +0000 (14:16 +0200)
tests/pixelconv.cxx

index 1d19b88ecdf3072505ee6369afc955e1e56e11ee..2676daa911b2adaa06e8f0a80eb74485491a3172 100644 (file)
@@ -180,6 +180,19 @@ int main(int argc, char **argv)
   srcpf.parse("rgb232");
   doTests(dstpf, srcpf);
 
+  /* rgb232 targets */
+
+  dstpf.parse("rgb232");
+
+  srcpf.parse("rgb888");
+  doTests(dstpf, srcpf);
+
+  srcpf.parse("rgb565");
+  doTests(dstpf, srcpf);
+
+  srcpf.parse("bgr232");
+  doTests(dstpf, srcpf);
+
   /* rgb565 with endian conversion (both ways) */
 
   dstpf = rfb::PixelFormat(32, 24, false, true, 255, 255, 255, 0, 8, 16);