[win32k] Stub out page to device space conversion, fixes three more gdi32 mapping winetests

svn path=/trunk/; revision=43749
This commit is contained in:
Gregor Schneider
2009-10-25 18:49:08 +00:00
parent 77c67054c7
commit 5b1a765b54

View File

@@ -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;
}