blob: 9194e9bfaf44d803658d625d44d2342594fba53e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc.
include <gescape.h>
# GIM_FREECOLORMAP -- Free a colormap.
procedure gim_freecolormap (gp, colormap)
pointer gp #I graphics descriptor
int colormap #I colormap number
short gim[GIM_FREECMAP_LEN]
begin
gim[GIM_FREECMAP_MP] = colormap
call gescape (gp, GIM_FREECMAP, gim, GIM_FREECMAP_LEN)
end
|