Commit 3739b5f9 authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

gdi32: Pass an lpDx array to the driver if the escapement is non-zero, so that…

gdi32: Pass an lpDx array to the driver if the escapement is non-zero, so that the driver has access to the unrotated advance widths.
parent cacf37f0
...@@ -1993,7 +1993,7 @@ BOOL WINAPI ExtTextOutW( HDC hdc, INT x, INT y, UINT flags, ...@@ -1993,7 +1993,7 @@ BOOL WINAPI ExtTextOutW( HDC hdc, INT x, INT y, UINT flags,
y = pt.y; y = pt.y;
char_extra = GetTextCharacterExtra(hdc); char_extra = GetTextCharacterExtra(hdc);
if(char_extra || dc->breakExtra || breakRem || lpDx) if(char_extra || dc->breakExtra || breakRem || lpDx || lf.lfEscapement != 0)
{ {
UINT i; UINT i;
SIZE tmpsz; SIZE tmpsz;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment