Replaced Popscren with a custom pop-up list for selecting public screen. Now it conta...
[tangerine.git] / rom / cgfx / writergbpixel.c
blob5f4d51fb725fa55b13c68165f1efd64755346c82
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_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
50 return driver_WriteRGBPixel(rp, x, y, pixel, GfxBase);
52 AROS_LIBFUNC_EXIT
53 } /* WriteRGBPixel */