2 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
5 Desc: Graphics function ClearRegion()
8 #include <aros/debug.h>
9 #include "graphics_intern.h"
10 #include <proto/exec.h>
11 #include <graphics/regions.h>
12 #include "intregions.h"
14 /*****************************************************************************
17 #include <clib/graphics_protos.h>
19 AROS_LH1(void, ClearRegion
,
22 AROS_LHA(struct Region
*, region
, A0
),
25 struct GfxBase
*, GfxBase
, 88, Graphics
)
28 Removes all rectangles in the specified region.
31 region - pointer to the region structure
48 27-11-96 digulla automatically created from
49 graphics_lib.fd and clib/graphics_protos.h
50 15-01-97 mreckt initial version
52 *****************************************************************************/
56 ASSERT_VALID_PTR(region
);
58 _DisposeRegionRectangleList(region
->RegionRectangle
, GfxBase
);