Rev 4153 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 4153 | Rev 4263 | ||
---|---|---|---|
Line 33... | Line 33... | ||
33 | */ |
33 | */ |
34 | 34 | ||
35 | #ifndef KERN_FONT_8X16_H_ |
35 | #ifndef KERN_FONT_8X16_H_ |
36 | #define KERN_FONT_8X16_H_ |
36 | #define KERN_FONT_8X16_H_ |
37 | 37 | ||
38 | #define FONT_GLYPHS 256 |
38 | #define FONT_GLYPHS 2899 |
39 | #define FONT_WIDTH 8 |
39 | #define FONT_WIDTH 8 |
40 | #define FONT_SCANLINES 16 |
40 | #define FONT_SCANLINES 16 |
41 | 41 | ||
42 | #include <arch/types.h> |
42 | #include <typedefs.h> |
43 | 43 | ||
- | 44 | extern uint16_t fb_font_glyph(const wchar_t ch); |
|
44 | extern uint8_t fb_font[FONT_GLYPHS * FONT_SCANLINES]; |
45 | extern uint8_t fb_font[FONT_GLYPHS][FONT_SCANLINES]; |
45 | 46 | ||
46 | #endif |
47 | #endif |
47 | 48 | ||
48 | /** @} |
49 | /** @} |
49 | */ |
50 | */ |