Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 486 → Rev 487

/shark/trunk/drivers/fb/fun16.c
144,6 → 144,7
{
 
grx_info = registered_fb[num];
grx_info->fix.visual = FB_VISUAL_DIRECTCOLOR;
 
}
 
196,7 → 197,7
rect.dx = x1;
rect.dy = y1;
rect.width = x2-x1+1;
rect.height = x2-x1+1;
rect.height = y2-y1+1;
rect.color = color;
rect.rop = ROP_COPY;
252,7 → 253,7
}
}
 
void linLine16(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color)
void grx_line(WORD x1, WORD y1, WORD x2, WORD y2, DWORD color)
{
register int t, distance;
register DWORD addr;