Changeset 21331 for trunk/src/gdi32/region.cpp
- Timestamp:
- Jul 7, 2009, 8:11:17 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gdi32/region.cpp
r10594 r21331 646 646 if(hrgnOldClip) GpiDestroyRegion(pHps->hps, hrgnOldClip); 647 647 } 648 else 648 else 649 649 {// already NULL, so nothing to do. 650 650 GpiDestroyRegion(pHps->hps, hrgnNewClip); … … 818 818 { 819 819 //Intersect the Windows clip region with the current visible region 820 lComplexity = GdiCombineVisRgnClipRgn(pHps, NULLHANDLE, RGN_AND_W); 821 822 return NULLREGION_W; 820 lComplexity = GdiCombineVisRgnClipRgn(pHps, NULLHANDLE, RGN_AND_W); 821 822 /* set clip region to NULL (according to MSDN) */ 823 if(lMode == CRGN_COPY) 824 GpiSetClipRegion(pHps->hps, NULL, NULL); 825 826 return NULLREGION_W; 823 827 } 824 828 … … 2067 2071 2068 2072 hrgn = PathToRegion(hdc); 2069 if(hrgn) 2073 if(hrgn) 2070 2074 { 2071 2075 ret = ExtSelectClipRgn(hdc, hrgn, iMode) != ERROR_W;
Note:
See TracChangeset
for help on using the changeset viewer.