PERFORCE change 76941 for review

Marcel Moolenaar marcel at FreeBSD.org
Fri May 13 14:12:24 PDT 2005


http://perforce.freebsd.org/chv.cgi?CH=76941

Change 76941 by marcel at marcel_nfs on 2005/05/13 21:11:45

	I reverted the order of the destination and source addresses to
	be more in line with the BitBlt operation (source first). I
	forgot it here.

Affected files ...

.. //depot/projects/tty/sys/dev/vga/vga_con.c#4 edit

Differences ...

==== //depot/projects/tty/sys/dev/vga/vga_con.c#4 (text+ko) ====

@@ -78,13 +78,13 @@
 }
 
 static void
-vga_con_bitblt(struct vtc_conout *co, int op, uintptr_t dst, uintptr_t src,
+vga_con_bitblt(struct vtc_conout *co, int op, uintptr_t src, uintptr_t dst,
     int width, int height, ...)
 {
 	struct vga_softc *sc = co->vtc_con_cookie;
 	va_list ap;
 
 	va_start(ap, height);
-	vga_vbitblt(sc, op, dst, src, width, height, ap);
+	vga_vbitblt(sc, op, src, dst, width, height, ap);
 	va_end(ap);
 }


More information about the p4-projects mailing list