(svn r10166) -Feature(tte): Add support for antialiased typefaces via FreeType. This is configurable for each font size in the configuration settings and requires using the 32bpp blitter and suitable fonts.

This commit is contained in:
peter1138
2007-06-15 16:21:56 +00:00
parent 3efca64a94
commit 77b29ea3bc
3 changed files with 28 additions and 5 deletions

View File

@@ -21,6 +21,9 @@ struct FreeTypeSettings {
uint small_size;
uint medium_size;
uint large_size;
bool small_aa;
bool medium_aa;
bool large_aa;
};
extern FreeTypeSettings _freetype;