From a11a450e338eef01fe61b6790324699139f81bb5 Mon Sep 17 00:00:00 2001 From: Massimo Del Fedele Date: Mon, 30 Mar 2009 19:51:12 +0200 Subject: [PATCH] gdi32: PATH_ExtTextOut remove incorrect shift to DC origin. --- dlls/gdi32/path.c | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/dlls/gdi32/path.c b/dlls/gdi32/path.c index 195f4138a65..19d392f8fb3 100644 --- a/dlls/gdi32/path.c +++ b/dlls/gdi32/path.c @@ -1429,7 +1429,6 @@ BOOL PATH_ExtTextOut(DC *dc, INT x, INT y, UINT flags, const RECT *lprc, unsigned int idx; double cosEsc, sinEsc; LOGFONTW lf; - POINT org; HDC hdc = dc->hSelf; INT offset = 0, xoff = 0, yoff = 0; @@ -1450,8 +1449,6 @@ BOOL PATH_ExtTextOut(DC *dc, INT x, INT y, UINT flags, const RECT *lprc, sinEsc = 0; } - GetDCOrgEx(hdc, &org); - for (idx = 0; idx < count; idx++) { static const MAT2 identity = { {0,1},{0,0},{0,0},{0,1} }; @@ -1470,7 +1467,7 @@ BOOL PATH_ExtTextOut(DC *dc, INT x, INT y, UINT flags, const RECT *lprc, GetGlyphOutlineW(hdc, str[idx], GGO_GLYPH_INDEX | GGO_NATIVE, &gm, dwSize, outline, &identity); - PATH_add_outline(dc, org.x + x + xoff, org.x + y + yoff, outline, dwSize); + PATH_add_outline(dc, x + xoff, y + yoff, outline, dwSize); HeapFree(GetProcessHeap(), 0, outline); }