Home  /  Autodocs  /  layers.library

NAME

FreeClipRect
release a ClipRect build by AllocClipRect

SYNOPSIS

FreeClipRect( li, cliprect )
a0 a1

void FreeClipRect( struct Layer_Info *li, struct ClipRect *cr);

FUNCTION

Disposes a ClipRect that is no longer required by the caller. The ClipRect is either released immedately into the free memory pool, or gets recycled by layers as soon as clipping operations are performed in the same Layer_Info.

This function also releases the BitMap linked to by the ClipRect. In case you disposed this bitmap already, make sure that you NULL cr->BitMap before calling this function.

NOTE THAT THIS FUNCTION IS PRIVATE. You should never play with layer cliprects yourself and never attach this cliprect to a layer yourself.

INPUTS

li
pointer to a Layer_Info the ClipRect has been allocated from by means of AllocClipRect()

SEE ALSO

layers/AllocClipRect(), <graphics/clip.h>