Tao.FreeGlut SDK Documentation

Glut.glutCopyColormap Method 

Copies the logical colormap for the layer in use from a specified window to the current window.

[Visual Basic]
Public Shared Sub glutCopyColormap( _
   ByVal win As Integer _
)
[C#]
public static void glutCopyColormap(
   int win
);

Parameters

win
The identifier of the window to copy the logical colormap from.

Remarks

glutCopyColormap copies (lazily if possible to promote sharing) the logical colormap from a specified window to the current window's layer in use. The copy will be from the normal plane to the normal plane; or from the overlay to the overlay (never across different layers). Once a colormap has been copied, avoid setting cells in the colormap with glutSetColor since that will force an actual copy of the colormap if it was previously copied by reference. glutCopyColormap should only be called when both the current window and the win window are color index windows.

EXAMPLE

Here is an example of how to create two color index GLUT windows with their colormaps loaded identically and so that the windows are likely to share the same colormap:

            int win1, win2;
            Glut.glutInitDisplayMode(Glut.GLUT_INDEX);
            win1 = Glut.glutCreateWindow("First color index window");
            Glut.glutSetColor(0, 0.0f, 0.0f, 0.0f); // black
            Glut.glutSetColor(1, 0.5f, 0.5f, 0.5f); // gray
            Glut.glutSetColor(2, 1.0f, 1.0f, 1.0f); // white
            Glut.glutSetColor(3, 1.0f, 0.0f, 0.0f); // red
            win2 = Glut.glutCreateWindow("Second color index window");
            Glut.glutCopyColormap(win1);
            

See Also

Glut Class | Tao.FreeGlut Namespace | glutCreateWindow | glutGetColor | glutSetColor