2 Copyright © 1995-2011, The AROS Development Team. All rights reserved.
5 Desc: AROS Graphics function DeinitRastPort()
9 #include <aros/debug.h>
10 #include <graphics/rastport.h>
11 #include <proto/exec.h>
13 /*****************************************************************************
16 #include <proto/arossupport.h>
25 Frees the extra contents associated with a RastPort structure.
26 The structure itself is not freed.
30 rp - The RastPort which contents are to be freed.
44 graphics.library/InitRastPort()
49 29-10-95 digulla automatically created from
50 graphics_lib.fd and clib/graphics_protos.h
52 *****************************************************************************/
54 D(bug("DeInitRastPort()\n"));
58 FreeVec(rp
->RP_Extra
);
62 } /* DeinitRastPort */