mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 12:23:31 +00:00
[NTGDI]
- Check for zero rectangles in REGION_bXformRgn. CORE-12204 svn path=/trunk/; revision=73881
This commit is contained in:
@@ -2051,6 +2051,10 @@ REGION_bXformRgn(
|
||||
RECT rect;
|
||||
BOOL bResult;
|
||||
|
||||
/* Check for zero rectangles and return TRUE for translation only matrices */
|
||||
if (prgn->rdh.nCount < 1)
|
||||
return pmx->flAccel & XFORM_UNITY;
|
||||
|
||||
/* Check if this is a scaling only matrix (off-diagonal elements are 0 */
|
||||
if (pmx->flAccel & XFORM_SCALE)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user