1UNTITLED LOCAL UNTITLED
2
4 glutSetColor — Sets an indexed color-mode entry.
5
7 OpenGLUT - colormap
8
10 #include <openglut.h>
11
12 void
13 glutSetColor(int nColor, GLfloat red, GLfloat green, GLfloat blue);
14
16 nColor The palette entry to change.
17
18 red New red value for palette entry.
19
20 green New green value for palette entry.
21
22 blue New blue value for palette entry.
23
25 glutSetCursor() allows you to set individual color-map entries in a
26 GLUT_INDEX type of display. Respects the current overlay setting.
27
29 Unimplemented.
30
32 glutGetColor(3) glutCopyColorMap(3)
33
34
35
36
37 Epoch