Update to lasso handling. Adjust scroll amount based on difference between mouse...
[AROS.git] / rom / cgfx / fillpixelarray.c
blobd84cc26965259127d7402de7c6d366ef410b1970
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_LH6(ULONG, FillPixelArray,
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),
23 AROS_LHA(ULONG , pixel , D4),
25 /* LOCATION */
26 struct Library *, CyberGfxBase, 25, Cybergraphics)
28 /* FUNCTION
30 INPUTS
32 RESULT
34 NOTES
36 EXAMPLE
38 BUGS
40 SEE ALSO
42 INTERNALS
44 HISTORY
45 27-11-96 digulla automatically created from
46 cybergraphics_lib.fd and clib/cybergraphics_protos.h
48 *****************************************************************************/
50 AROS_LIBFUNC_INIT
52 return driver_FillPixelArray(rp
53 , destx, desty
54 , width, height
55 , pixel
56 , GfxBase
59 AROS_LIBFUNC_EXIT
60 } /* FillPixelArray */