Dmitry Timoshkov : usp10: Don't specify ETO_GLYPH_INDEX for bitmap fonts.

Alexandre Julliard julliard at winehq.org
Wed Jul 22 16:34:29 CDT 2020


Module: wine
Branch: master
Commit: 24e09ac5823083bfd2e283e8b19e96a60d745e6e
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=24e09ac5823083bfd2e283e8b19e96a60d745e6e

Author: Dmitry Timoshkov <dmitry at baikal.ru>
Date:   Tue Jul 21 18:57:00 2020 +0800

usp10: Don't specify ETO_GLYPH_INDEX for bitmap fonts.

Use same check as ScriptShapeOpenType() does, fixes painting of
non-latin characters in Wordpad using MS Sans Serif font.

Signed-off-by: Dmitry Timoshkov <dmitry at baikal.ru>
Signed-off-by: Aric Stewart <aric at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/usp10/usp10.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dlls/usp10/usp10.c b/dlls/usp10/usp10.c
index 322091c547..a6664279b5 100644
--- a/dlls/usp10/usp10.c
+++ b/dlls/usp10/usp10.c
@@ -3607,10 +3607,10 @@ HRESULT WINAPI ScriptTextOut(const HDC hdc, SCRIPT_CACHE *psc, int x, int y, UIN
     if (!hdc || !psc) return E_INVALIDARG;
     if (!piAdvance || !psa || !pwGlyphs) return E_INVALIDARG;
 
-    fuOptions &= ETO_CLIPPED + ETO_OPAQUE;
+    fuOptions &= ETO_CLIPPED | ETO_OPAQUE;
     fuOptions |= ETO_IGNORELANGUAGE;
-    if  (!psa->fNoGlyphIndex)                                     /* Have Glyphs?                      */
-        fuOptions |= ETO_GLYPH_INDEX;                             /* Say don't do translation to glyph */
+    if (!psa->fNoGlyphIndex && *psc && ((ScriptCache *)*psc)->sfnt)
+        fuOptions |= ETO_GLYPH_INDEX; /* We do actually have glyph indices */
 
     if (!(lpDx = heap_calloc(cGlyphs, 2 * sizeof(*lpDx))))
         return E_OUTOFMEMORY;




More information about the wine-cvs mailing list