Add support for user-level 9P servers/clients and various bug fixes to go with them.

This commit is contained in:
rsc 2003-12-11 17:48:38 +00:00
parent ac244f8d28
commit 32f69c36e0
60 changed files with 965 additions and 485 deletions

View file

@ -13,13 +13,13 @@ memfillcolor(Memimage *m, u32int val)
if(m->X == nil)
return;
if((val & 0xFF) == 0xFF) /* full alpha */
xfillcolor(m, m->r, _rgbatoimg(m, val));
_xfillcolor(m, m->r, _rgbatoimg(m, val));
else
xputxdata(m, m->r);
_xputxdata(m, m->r);
}
void
xfillcolor(Memimage *m, Rectangle r, u32int v)
_xfillcolor(Memimage *m, Rectangle r, u32int v)
{
Point p;
Xmem *xm;