Module: wine Branch: master Commit: a11a450e338eef01fe61b6790324699139f81bb5 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a11a450e338eef01fe61b67903...
Author: Massimo Del Fedele max@veneto.com Date: Mon Mar 30 19:51:12 2009 +0200
gdi32: PATH_ExtTextOut remove incorrect shift to DC origin.
---
dlls/gdi32/path.c | 5 +---- 1 files changed, 1 insertions(+), 4 deletions(-)
diff --git a/dlls/gdi32/path.c b/dlls/gdi32/path.c index 195f413..19d392f 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); }