[PATCH 1/2] gdi32: Fix vertical rotation.

Huw Davies huw at codeweavers.com
Thu Feb 7 08:43:37 CST 2019


From: Byeongsik Jeon <bsjeon at hanmail.net>

Missed from cf891b04a087bcbc713e704c1adbf6b88243e996

Signed-off-by: Byeongsik Jeon <bsjeon at hanmail.net>
Signed-off-by: Huw Davies <huw at codeweavers.com>
---
 dlls/gdi32/freetype.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/gdi32/freetype.c b/dlls/gdi32/freetype.c
index de62425173..22dfe87501 100644
--- a/dlls/gdi32/freetype.c
+++ b/dlls/gdi32/freetype.c
@@ -7593,7 +7593,7 @@ static DWORD get_glyph_outline(GdiFont *incoming_font, UINT glyph, UINT format,
         if(buflen == 0) buf = NULL;
 
         if (needsTransform && buf)
-		pFT_Outline_Transform(outline, &transMat);
+            pFT_Outline_Transform(outline, &transMatTategaki);
 
         needed = get_bezier_glyph_outline(outline, buflen, NULL);
 
-- 
2.18.0




More information about the wine-devel mailing list