(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:
2007-06-15 16:21:56 +00:00
parent d6267f5539
commit ef099dbc27
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;