blob: 9a4927592f76adb9d3da055acd59deb2b7a12064 (
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_DESTROYRASTER -- Destroy a raster.
procedure gim_destroyraster (gp, raster)
pointer gp #I graphics descriptor
int raster #I raster number (0 is display window)
short gim[GIM_DESTROYRASTER_LEN]
begin
gim[GIM_DESTROYRASTER_RN] = raster
call gescape (gp, GIM_DESTROYRASTER, gim, GIM_DESTROYRASTER_LEN)
end
|