Changeset 754 for libcaca/trunk/tools/makefont.c
- Timestamp:
- Apr 13, 2006, 2:25:36 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/tools/makefont.c
r747 r754 26 26 #define FONT "Monospace 9" 27 27 #define DPI 96 28 #define BPP 828 #define BPP 4 29 29 30 30 static int const blocklist[] = … … 260 260 261 261 pixel >>= (8 - BPP); 262 /* FIXME: BPP should appear here */ 263 glyph_data[n / 8] |= (pixel << (n % 8)); 262 glyph_data[n / 8] |= pixel << (8 - BPP - (n % 8)); 264 263 n += BPP; 265 264 }
Note: See TracChangeset
for help on using the changeset viewer.