Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 13 May 2005 21:12:23 GMT
From:      Marcel Moolenaar <marcel@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 76941 for review
Message-ID:  <200505132112.j4DLCN5X015978@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=76941

Change 76941 by marcel@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);
 }



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200505132112.j4DLCN5X015978>