mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
Added a set option to ModifyWorldTransform.
svn path=/trunk/; revision=28291
This commit is contained in:
parent
01d9041103
commit
edaf84b215
1 changed files with 5 additions and 0 deletions
|
@ -192,6 +192,11 @@ IntGdiModifyWorldTransform(PDC pDc,
|
|||
IntGdiCombineTransform(&pDc->w.xformWorld2Wnd, &pDc->w.xformWorld2Wnd, lpXForm);
|
||||
break;
|
||||
|
||||
case MWT_MAX+1: // Must be MWT_SET????
|
||||
pDc->w.xformWorld2Wnd = *lpXForm; // Do it like Wine.
|
||||
DC_UpdateXforms(pDc); // Good wine port here too.
|
||||
break;
|
||||
|
||||
default:
|
||||
SetLastWin32Error(ERROR_INVALID_PARAMETER);
|
||||
return FALSE;
|
||||
|
|
Loading…
Reference in a new issue