patch-2.3.21 linux/drivers/video/fbcon-mac.c
Next file: linux/drivers/video/fbcon-mfb.c
Previous file: linux/drivers/video/fbcon-iplan2p8.c
Back to the patch index
Back to the overall index
- Lines: 42
- Date:
Mon Oct 11 10:26:52 1999
- Orig file:
v2.3.20/linux/drivers/video/fbcon-mac.c
- Orig date:
Thu Feb 25 10:02:12 1999
diff -u --recursive --new-file v2.3.20/linux/drivers/video/fbcon-mac.c linux/drivers/video/fbcon-mac.c
@@ -62,7 +62,7 @@
if( sx == 0 && width == p->conp->vc_cols) {
s = height * fontheight(p) * p->next_line;
- mymemmove(dest, src, s);
+ fb_memmove(dest, src, s);
return;
}
@@ -158,7 +158,7 @@
plot_pixel_mac(p, get_pixel_mac(p, j+(dx-sx), i+(dy-sy)), j, i);
if (j < r) {
- mymemmove(dest, src, s);
+ fb_memmove(dest, src, s);
if (move_up) {
dest += p->next_line;
src += p->next_line;
@@ -202,9 +202,9 @@
if( sx == 0 && width == p->conp->vc_cols) {
s = height * fontheight(p) * p->next_line;
if (inverse)
- mymemclear(dest, s);
+ fb_memclear(dest, s);
else
- mymemset(dest, s);
+ fb_memset255(dest, s);
}
l = sx * fontwidth(p);
@@ -251,9 +251,9 @@
if (j < r) {
if (PIXEL_WHITE_MAC == pixel)
- mymemclear(dest, s);
+ fb_memclear(dest, s);
else
- mymemset(dest, s);
+ fb_memset255(dest, s);
dest += p->next_line;
j += w;
}
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)