summaryrefslogtreecommitdiff
path: root/src/gui/text/qfontengine_ft.cpp
diff options
context:
space:
mode:
authorTrond Kjernåsen <trond@trolltech.com>2009-09-22 12:37:34 +0200
committerTrond Kjernåsen <trond@trolltech.com>2009-09-22 12:40:37 +0200
commit66ae0f190f1f07ce7b2578b81f8d0c69328cf028 (patch)
tree36943b60f1cc5211aa356a897bab2f4679f510b1 /src/gui/text/qfontengine_ft.cpp
parent717f6ee081fdfcb7d028e3e26d252f9537878899 (diff)
downloadqt4-tools-66ae0f190f1f07ce7b2578b81f8d0c69328cf028.tar.gz
Fixed text drawing in the GL2 engine after sub-pixel hinting was added.
1. The mono format was not handled at all. 2. We really, really wanted to use sub-pixel hinted glyphs even when they were not available. 3. The glyphFormat type in the FT font engine wasn't updated to reflect the correct system glyph type. Reviewed-by: Kim
Diffstat (limited to 'src/gui/text/qfontengine_ft.cpp')
-rw-r--r--src/gui/text/qfontengine_ft.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gui/text/qfontengine_ft.cpp b/src/gui/text/qfontengine_ft.cpp
index a4b2e7e47e..788417a5a0 100644
--- a/src/gui/text/qfontengine_ft.cpp
+++ b/src/gui/text/qfontengine_ft.cpp
@@ -647,8 +647,14 @@ bool QFontEngineFT::init(FaceId faceId, bool antialias, GlyphFormat format)
{
defaultFormat = format;
this->antialias = antialias;
+
if (!antialias)
glyphFormat = QFontEngineGlyphCache::Raster_Mono;
+ else if (format == Format_A8)
+ glyphFormat = QFontEngineGlyphCache::Raster_A8;
+ else if (format == Format_A32)
+ glyphFormat = QFontEngineGlyphCache::Raster_RGBMask;
+
face_id = faceId;
freetype = QFreetypeFace::getFace(face_id);
if (!freetype) {