diff options
| author | Nils Wallménius <nils@rockbox.org> | 2007-09-14 16:04:01 +0000 |
|---|---|---|
| committer | Nils Wallménius <nils@rockbox.org> | 2007-09-14 16:04:01 +0000 |
| commit | d718c2779864bcb28fef38536d4f62a8b986ba3f (patch) | |
| tree | 8325ca766fbc727ef0bfc584f9761567a3849031 | |
| parent | 9730ca8b12e0f18f94a74b22da9441ccac632914 (diff) | |
| download | rockbox-d718c2779864bcb28fef38536d4f62a8b986ba3f.zip rockbox-d718c2779864bcb28fef38536d4f62a8b986ba3f.tar.gz rockbox-d718c2779864bcb28fef38536d4f62a8b986ba3f.tar.bz2 rockbox-d718c2779864bcb28fef38536d4f62a8b986ba3f.tar.xz | |
Tab police
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14691 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/export/font.h | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/firmware/export/font.h b/firmware/export/font.h index 649a1d0..15d54da 100644 --- a/firmware/export/font.h +++ b/firmware/export/font.h @@ -92,16 +92,16 @@ enum { /* builtin C-based proportional/fixed font structure */ /* based on The Microwindows Project http://microwindows.org */ struct font { - int maxwidth; /* max width in pixels*/ - unsigned int height; /* height in pixels*/ - int ascent; /* ascent (baseline) height*/ - int firstchar; /* first character in bitmap*/ - int size; /* font size in glyphs*/ - const unsigned char *bits; /* 8-bit column bitmap data*/ - const unsigned short *offset; /* offsets into bitmap data*/ - const unsigned char *width; /* character widths or NULL if fixed*/ - int defaultchar; /* default char (not glyph index)*/ - int32_t bits_size; /* # bytes of glyph bits*/ + int maxwidth; /* max width in pixels*/ + unsigned int height; /* height in pixels*/ + int ascent; /* ascent (baseline) height*/ + int firstchar; /* first character in bitmap*/ + int size; /* font size in glyphs*/ + const unsigned char *bits; /* 8-bit column bitmap data*/ + const unsigned short *offset; /* offsets into bitmap data*/ + const unsigned char *width; /* character widths or NULL if fixed*/ + int defaultchar; /* default char (not glyph index)*/ + int32_t bits_size; /* # bytes of glyph bits*/ }; /* font routines*/ @@ -122,6 +122,3 @@ void glyph_cache_save(void); #endif #endif -/* ----------------------------------------------------------------- - * vim: et sw=4 ts=8 sts=4 tw=78 - */ |