summaryrefslogtreecommitdiff
path: root/src/fontcache.h
diff options
context:
space:
mode:
authorpeter1138 <peter1138@openttd.org>2007-06-15 16:21:56 +0000
committerpeter1138 <peter1138@openttd.org>2007-06-15 16:21:56 +0000
commitef099dbc27fe513d8a915c23186179cde3f338c3 (patch)
tree3f3afc243812cee2eaed281cc99d3347b470b3d9 /src/fontcache.h
parentd6267f553959089f1208cf59fd33410f78e86fe2 (diff)
downloadopenttd-ef099dbc27fe513d8a915c23186179cde3f338c3.tar.xz
(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.
Diffstat (limited to 'src/fontcache.h')
-rw-r--r--src/fontcache.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/fontcache.h b/src/fontcache.h
index f2240e6d2..b8f450cad 100644
--- a/src/fontcache.h
+++ b/src/fontcache.h
@@ -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;