- Wait for mouse acks properly.
[cake.git] / rom / cgfx / invertpixelarray.c
blob626db36bee2fffc4339b5ddeb91483740dc2de47
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc:
6 Lang: english
7 */
8 #include "cybergraphics_intern.h"
10 /*****************************************************************************
12 NAME */
13 #include <clib/cybergraphics_protos.h>
15 AROS_LH5(ULONG, InvertPixelArray,
17 /* SYNOPSIS */
18 AROS_LHA(struct RastPort *, rp , A1),
19 AROS_LHA(UWORD , destx , D0),
20 AROS_LHA(UWORD , desty , D1),
21 AROS_LHA(UWORD , width , D2),
22 AROS_LHA(UWORD , height , D3),
24 /* LOCATION */
25 struct Library *, CyberGfxBase, 24, Cybergraphics)
27 /* FUNCTION
29 INPUTS
31 RESULT
33 NOTES
35 EXAMPLE
37 BUGS
39 SEE ALSO
41 INTERNALS
43 HISTORY
44 27-11-96 digulla automatically created from
45 cybergraphics_lib.fd and clib/cybergraphics_protos.h
47 *****************************************************************************/
49 AROS_LIBFUNC_INIT
51 return driver_InvertPixelArray(rp
52 , destx, desty
53 , width, height
54 , GfxBase
57 AROS_LIBFUNC_EXIT
58 } /* InvertPixelArray */