| 1746 | } |
| 1747 | |
| 1748 | static boolean |
| 1749 | vesa_GetCharPixel(int ch, unsigned x, unsigned y) |
| 1750 | { |
| 1751 | unsigned x2; |
| 1752 | unsigned char fnt; |
| 1753 | |
| 1754 | x2 = x % 8; |
| 1755 | |
| 1756 | fnt = vesa_GetCharPixelRow(ch, x, y); |
| 1757 | return (fnt & (0x80 >> x2)) != 0; |
| 1758 | } |
| 1759 | |
| 1760 | static unsigned char |
| 1761 | vesa_GetCharPixelRow(uint32 ch, unsigned x, unsigned y) |
no test coverage detected