mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
winex11.drv: Associate the real DC transformation with cached font data.
This matches what WineEngCreateFontInstance() does, and makes applications which set custom axes directions using different window/viewport extents display text correctly.
This commit is contained in:
parent
a50546e563
commit
3e850b5b14
@ -1066,7 +1066,11 @@ BOOL X11DRV_XRender_SelectFont(X11DRV_PDEVICE *physDev, HFONT hfont)
|
||||
lfsz.lf.lfWidth = abs( lfsz.lf.lfWidth );
|
||||
lfsz.devsize.cx = X11DRV_XWStoDS( physDev, lfsz.lf.lfWidth );
|
||||
lfsz.devsize.cy = X11DRV_YWStoDS( physDev, lfsz.lf.lfHeight );
|
||||
GetWorldTransform( physDev->hdc, &lfsz.xform );
|
||||
|
||||
GetTransform( physDev->hdc, 0x204, &lfsz.xform );
|
||||
TRACE("font transform %f %f %f %f\n", lfsz.xform.eM11, lfsz.xform.eM12,
|
||||
lfsz.xform.eM21, lfsz.xform.eM22);
|
||||
|
||||
/* Not used fields, would break hashing */
|
||||
lfsz.xform.eDx = lfsz.xform.eDy = 0;
|
||||
|
||||
|
@ -3590,6 +3590,7 @@ WINGDIAPI INT WINAPI GetTextFaceW(HDC,INT,LPWSTR);
|
||||
WINGDIAPI BOOL WINAPI GetTextMetricsA(HDC,LPTEXTMETRICA);
|
||||
WINGDIAPI BOOL WINAPI GetTextMetricsW(HDC,LPTEXTMETRICW);
|
||||
#define GetTextMetrics WINELIB_NAME_AW(GetTextMetrics)
|
||||
WINGDIAPI BOOL WINAPI GetTransform(HDC,DWORD,XFORM*);
|
||||
WINGDIAPI BOOL WINAPI GetViewportExtEx(HDC,LPSIZE);
|
||||
WINGDIAPI BOOL WINAPI GetViewportOrgEx(HDC,LPPOINT);
|
||||
WINGDIAPI BOOL WINAPI GetWindowExtEx(HDC,LPSIZE);
|
||||
|
Loading…
Reference in New Issue
Block a user