New bitmap method SetRGBConversionFunction which can be used to
[tangerine.git] / rom / cgfx / writergbpixel.c
blob3ea5e2b6c835b26d3052c7ab275353e4c8079cf2
1 /*
2 Copyright © 1995-2006, 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_LH4(LONG, WriteRGBPixel,
17 /* SYNOPSIS */
18 AROS_LHA(struct RastPort *, rp , A1),
19 AROS_LHA(UWORD , x , D0),
20 AROS_LHA(UWORD , y , D1),
21 AROS_LHA(ULONG , pixel , D2),
23 /* LOCATION */
24 struct Library *, CyberGfxBase, 19, Cybergraphics)
26 /* FUNCTION
28 INPUTS
30 RESULT
32 NOTES
34 EXAMPLE
36 BUGS
38 SEE ALSO
40 INTERNALS
42 HISTORY
43 27-11-96 digulla automatically created from
44 cybergraphics_lib.fd and clib/cybergraphics_protos.h
46 *****************************************************************************/
48 AROS_LIBFUNC_INIT
49 AROS_LIBBASE_EXT_DECL(struct Library *,CyberGfxBase)
51 return driver_WriteRGBPixel(rp, x, y, pixel, GfxBase);
53 AROS_LIBFUNC_EXIT
54 } /* WriteRGBPixel */