gdi32/enhmfdrv: Get the source transformation from the source DC.
This commit is contained in:
parent
d456f99a04
commit
5e17b04df7
|
@ -119,12 +119,7 @@ static BOOL EMFDRV_BitBlockTransfer(
|
||||||
pEMR->dwRop = rop;
|
pEMR->dwRop = rop;
|
||||||
pEMR->xSrc = xSrc;
|
pEMR->xSrc = xSrc;
|
||||||
pEMR->ySrc = ySrc;
|
pEMR->ySrc = ySrc;
|
||||||
pEMR->xformSrc.eM11 = 1.0; /** FIXME: */
|
GetWorldTransform(physDevSrc->hdc, &pEMR->xformSrc);
|
||||||
pEMR->xformSrc.eM12 = 0.0; /** Setting default */
|
|
||||||
pEMR->xformSrc.eM21 = 0.0; /** value. */
|
|
||||||
pEMR->xformSrc.eM22 = 1.0; /** Where should we */
|
|
||||||
pEMR->xformSrc.eDx = 0.0; /** get that info */
|
|
||||||
pEMR->xformSrc.eDy = 0.0; /** ???? */
|
|
||||||
pEMR->crBkColorSrc = GetBkColor(physDevSrc->hdc);
|
pEMR->crBkColorSrc = GetBkColor(physDevSrc->hdc);
|
||||||
pEMR->iUsageSrc = DIB_RGB_COLORS;
|
pEMR->iUsageSrc = DIB_RGB_COLORS;
|
||||||
pEMR->offBmiSrc = emrSize;
|
pEMR->offBmiSrc = emrSize;
|
||||||
|
|
Loading…
Reference in New Issue