mirror of
https://github.com/reactos/reactos.git
synced 2026-07-07 00:44:22 +08:00
[win32k] Stub out page to device space conversion, fixes three more gdi32 mapping winetests
svn path=/trunk/; revision=43749
This commit is contained in:
@@ -202,12 +202,16 @@ NtGdiGetTransform(
|
||||
MatrixS2XForm(XForm, &dc->dclevel.mxWorldToDevice);
|
||||
break;
|
||||
|
||||
case GdiPageSpaceToDeviceSpace:
|
||||
DPRINT1("Page space -> device space is unsupported!\n");
|
||||
break;
|
||||
|
||||
case GdiDeviceSpaceToWorldSpace:
|
||||
MatrixS2XForm(XForm, &dc->dclevel.mxDeviceToWorld);
|
||||
break;
|
||||
|
||||
default:
|
||||
DPRINT1("Unknown or unsupported transform %lu\n", iXform);
|
||||
DPRINT1("Unknown transform %lu\n", iXform);
|
||||
Status = STATUS_INVALID_PARAMETER;
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user