Skip to content

Commit 5b1a765

Browse files
committed
[win32k] Stub out page to device space conversion, fixes three more gdi32 mapping winetests
svn path=/trunk/; revision=43749
1 parent 77c6705 commit 5b1a765

File tree

1 file changed

+5
-1
lines changed
  • reactos/subsystems/win32/win32k/objects

1 file changed

+5
-1
lines changed

reactos/subsystems/win32/win32k/objects/coord.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,12 +202,16 @@ NtGdiGetTransform(
202202
MatrixS2XForm(XForm, &dc->dclevel.mxWorldToDevice);
203203
break;
204204

205+
case GdiPageSpaceToDeviceSpace:
206+
DPRINT1("Page space -> device space is unsupported!\n");
207+
break;
208+
205209
case GdiDeviceSpaceToWorldSpace:
206210
MatrixS2XForm(XForm, &dc->dclevel.mxDeviceToWorld);
207211
break;
208212

209213
default:
210-
DPRINT1("Unknown or unsupported transform %lu\n", iXform);
214+
DPRINT1("Unknown transform %lu\n", iXform);
211215
Status = STATUS_INVALID_PARAMETER;
212216
break;
213217
}

0 commit comments

Comments
 (0)