Unification of "SEE ALSO" for graphics.library
[cake.git] / rom / graphics / setrgb32cm.c
blob64490c5e927771383d8b9252e7bb6c11abc7a68a
1 /*
2 Copyright © 1995-2007, The AROS Development Team. All rights reserved.
3 $Id$
5 Desc: Graphics function SetRGB32CM()
6 Lang: english
7 */
8 #include <graphics/view.h>
9 #include "graphics_intern.h"
11 /*****************************************************************************
13 NAME */
14 #include <proto/graphics.h>
16 AROS_LH5(void, SetRGB32CM,
18 /* SYNOPSIS */
19 AROS_LHA(struct ColorMap *, cm, A0),
20 AROS_LHA(ULONG , n , D0),
21 AROS_LHA(ULONG , r , D1),
22 AROS_LHA(ULONG , g , D2),
23 AROS_LHA(ULONG , b , D3),
25 /* LOCATION */
26 struct GfxBase *, GfxBase, 166, Graphics)
28 /* FUNCTION
29 Set one color in the ColorMap.
31 INPUTS
32 cm - ColorMap structure obtained via GetColorMap()
33 n - the number of the color register to set
34 r - red level (32 bit left justified fraction)
35 g - green level (32 bit left justified fraction)
36 b - blue level (32 bit left justified fraction)
38 RESULT
39 Store the (r,g,b) triplet at index n in the ColorMap structure.
40 The changes will not be immediately displayed. Use this function
41 before linking the ColorMap to a ViewPort. Do not access the entries
42 in the ColorTable yourself, as the ColorTable is subject to change.
44 NOTES
46 EXAMPLE
48 BUGS
50 SEE ALSO
51 GetColorMap(), SetRGB32(), GetRGB32(), SetRGB4CM(), graphics/view.h
53 INTERNALS
54 This function depends on the ColorMap->ColorTable structure
56 HISTORY
58 *****************************************************************************/
60 AROS_LIBFUNC_INIT
62 if (NULL != cm && n < cm->Count)
64 color_set(cm, r,g,b,n);
67 AROS_LIBFUNC_EXIT
69 } /* SetRGB32CM */