From 9d29067d15a3e6e8b8ccba774fdd7bde7022e7ac Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Sat, 6 Oct 2012 14:23:22 +0000 Subject: [PATCH] [WIN32K] - Fix detection of trivial clipping region - CID 731584 svn path=/trunk/; revision=57496 --- reactos/win32ss/gdi/eng/stretchblt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/win32ss/gdi/eng/stretchblt.c b/reactos/win32ss/gdi/eng/stretchblt.c index c04af3fe8e8..ab3feef645b 100644 --- a/reactos/win32ss/gdi/eng/stretchblt.c +++ b/reactos/win32ss/gdi/eng/stretchblt.c @@ -440,7 +440,7 @@ IntEngStretchBlt(SURFOBJ *psoDest, return TRUE; } - if (ClipRegion) + if (ClipRegion->iDComplexity != DC_TRIVIAL) { if (!RECTL_bIntersectRect(&OutputRect, &InputClippedRect, &ClipRegion->rclBounds))