From 2922b635c379d0090dceb8912ee0a1bee4faf614 Mon Sep 17 00:00:00 2001 From: Gregor Schneider Date: Fri, 21 Aug 2009 14:35:48 +0000 Subject: [PATCH] Remove glyph guard (bug #933): there is no way to such an exclusion properly without working GetCharPlacement, every font engine handles glyphed output slightly different. Fixes Abiword text regression svn path=/trunk/; revision=42826 --- reactos/subsystems/win32/win32k/objects/freetype.c | 6 ------ 1 file changed, 6 deletions(-) diff --git a/reactos/subsystems/win32/win32k/objects/freetype.c b/reactos/subsystems/win32/win32k/objects/freetype.c index 8b4e5e987e6..a024474bd14 100644 --- a/reactos/subsystems/win32/win32k/objects/freetype.c +++ b/reactos/subsystems/win32/win32k/objects/freetype.c @@ -3732,12 +3732,6 @@ NtGdiExtTextOutW( } } - /* FIXME: remove this as soon as GetCharacterPlacementA/W work properly */ - if ((fuOptions & ETO_GLYPH_INDEX) && (fuOptions != (ETO_GLYPH_INDEX | ETO_PDY))) - { - fuOptions &= ~ETO_GLYPH_INDEX; - } - /* Finally call the internal routine */ Result = GreExtTextOutW(hDC, XStart, -- 2.17.1