line.c (c2c66aff) | line.c (94b4b5c1) |
---|---|
1/* 2 * PROJECT: ReactOS Win32k Subsystem 3 * LICENSE: GPL - See COPYING in the top level directory 4 * FILE: win32ss/gdi/ntgdi/line.c 5 * PURPOSE: Line functions 6 * PROGRAMMERS: ... 7 */ 8 --- 49 unchanged lines hidden (view full) --- 58 RECTL_bUnionRect(&bounds, &bounds, &rect); 59 points++; 60 } 61 62 DPRINT("APLB dc %p l %d t %d\n",dc,rect.left,rect.top); 63 DPRINT(" r %d b %d\n",rect.right,rect.bottom); 64 65 { | 1/* 2 * PROJECT: ReactOS Win32k Subsystem 3 * LICENSE: GPL - See COPYING in the top level directory 4 * FILE: win32ss/gdi/ntgdi/line.c 5 * PURPOSE: Line functions 6 * PROGRAMMERS: ... 7 */ 8 --- 49 unchanged lines hidden (view full) --- 58 RECTL_bUnionRect(&bounds, &bounds, &rect); 59 points++; 60 } 61 62 DPRINT("APLB dc %p l %d t %d\n",dc,rect.left,rect.top); 63 DPRINT(" r %d b %d\n",rect.right,rect.bottom); 64 65 { |
66 RECTL rcRgn; 67 if (dc->fs & DC_FLAG_DIRTY_RAO) CLIPPING_UpdateGCRegion(dc); 68 if (REGION_GetRgnBox(dc->prgnRao, &rcRgn)) 69 { 70 if (RECTL_bIntersectRect( &rcRgn, &rcRgn, &bounds )) IntUpdateBoundsRect(dc, &rcRgn); 71 } | 66 RECTL rcRgn = dc->erclClip; // Use the clip box for now. 67 68 if (RECTL_bIntersectRect( &rcRgn, &rcRgn, &bounds )) 69 IntUpdateBoundsRect(dc, &rcRgn); |
72 else | 70 else |
73 IntUpdateBoundsRect(dc, &bounds); | 71 IntUpdateBoundsRect(dc, &bounds); |
74 } 75} 76 77// Should use Fx in Point 78// 79BOOL FASTCALL 80IntGdiMoveToEx(DC *dc, 81 int X, --- 582 unchanged lines hidden --- | 72 } 73} 74 75// Should use Fx in Point 76// 77BOOL FASTCALL 78IntGdiMoveToEx(DC *dc, 79 int X, --- 582 unchanged lines hidden --- |