mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
[WIN32K]
Allow arbitrary transforms in NtGdiExtCreateRegion. Shearing and rotation are not handled correctly yet, but at least we do no longer fail on transforms that have scaling and an offset, which are classified as GX_GENERAL svn path=/trunk/; revision=65382
This commit is contained in:
@@ -3668,8 +3668,8 @@ NtGdiExtCreateRegion(
|
||||
XFORMOBJ_vInit(&xo, &matrix);
|
||||
ret = XFORMOBJ_iSetXform(&xo, (XFORML*)Xform);
|
||||
|
||||
/* Check for error, also no scale and shear allowed */
|
||||
if (ret != DDI_ERROR && ret != GX_GENERAL)
|
||||
/* Check for error */
|
||||
if (ret != DDI_ERROR)
|
||||
{
|
||||
/* Apply the coordinate transformation on the rects */
|
||||
if (XFORMOBJ_bApplyXform(&xo,
|
||||
|
||||
Reference in New Issue
Block a user