PERFORCE change 154068 for review
Ed Schouten
ed at FreeBSD.org
Thu Dec 4 11:57:22 PST 2008
http://perforce.freebsd.org/chv.cgi?CH=154068
Change 154068 by ed at ed_flippo on 2008/12/04 19:57:05
Don't use mark_all() inside putchar().
We don't want to redraw everything when drawing a single
character.
Affected files ...
.. //depot/projects/mpsafetty/sys/dev/syscons/scterm-teken.c#5 edit
Differences ...
==== //depot/projects/mpsafetty/sys/dev/syscons/scterm-teken.c#5 (text+ko) ====
@@ -272,7 +272,7 @@
cursor = tp->tp_row * scp->xsize + tp->tp_col;
p = sc_vtb_pointer(&scp->vtb, cursor);
sc_vtb_putchar(&scp->vtb, p, map[ch], scteken_attr(a));
- mark_all(scp);
+ mark_for_update(scp, cursor);
}
static void
More information about the p4-projects
mailing list