summaryrefslogtreecommitdiff
path: root/splash/SplashFTFontEngine.h
diff options
context:
space:
mode:
authorPetr Gajdos <pgajdos@novell.com>2009-05-21 00:37:18 +0200
committerAlbert Astals Cid <aacid@kde.org>2009-05-21 00:37:18 +0200
commitaf32d56af779edcc539b680e634755941d1bf45c (patch)
tree3cae467cb263ee7e8df8f235bbc58af71ba4ead0 /splash/SplashFTFontEngine.h
parent1a69d9638214943b3c2278f570694d9722a5de15 (diff)
Add the possibility of forcing no hinting of fonts
Diffstat (limited to 'splash/SplashFTFontEngine.h')
-rw-r--r--splash/SplashFTFontEngine.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/splash/SplashFTFontEngine.h b/splash/SplashFTFontEngine.h
index 5bfe14a0..2d4699c4 100644
--- a/splash/SplashFTFontEngine.h
+++ b/splash/SplashFTFontEngine.h
@@ -12,6 +12,7 @@
// under GPL version 2 or later
//
// Copyright (C) 2006 Takashi Iwai <tiwai@suse.de>
+// Copyright (C) 2009 Petr Gajdos <pgajdos@novell.com>
//
// To see a description of the changes please see the Changelog file that
// came with your tarball or type make ChangeLog if you are building from git
@@ -42,7 +43,7 @@ class SplashFontSrc;
class SplashFTFontEngine {
public:
- static SplashFTFontEngine *init(GBool aaA);
+ static SplashFTFontEngine *init(GBool aaA, GBool noahA);
~SplashFTFontEngine();
@@ -57,9 +58,10 @@ public:
private:
- SplashFTFontEngine(GBool aaA, FT_Library libA);
+ SplashFTFontEngine(GBool aaA, GBool noahA, FT_Library libA);
GBool aa;
+ GBool noah;
FT_Library lib;
GBool useCIDs;