cyclemap(3G) — Silicon Graphics
NAME
cyclemap − cycles through color maps at a specified rate
SPECIFICATION
C
cyclemap(duration, map, nextmap)
short duration, map, nextmap;
FORTRAN
subroutine cyclem(duration, map, nextmap)
integer*4 duration, map, nextmap
Pascal
procedure cyclemap(duration, map, nextmap: Scoord);
DESCRIPTION
cyclemap specifies the duration in vertical retraces the affected map (map) and the next map to use (nextmap) when the duration is over. For example, the following routines set up multimap mode and cycle between two maps, leaving map 1 on for ten vertical retraces and map 3 on for five retraces. cyclemap must be used in multimap mode.
...
multimap();
gconfig();
cyclemap(10, 1, 3);
cyclemap(5, 3, 1);
...
SEE ALSO
blink, gconfig, multimap Programming Guide, Section 6.2, Color Maps
NOTE
This routine is available only in immediate mode.
Version 3.6 — December 20, 1987