diff options
Diffstat (limited to 'pkg/images/tv/display/zrgbim.x')
-rw-r--r-- | pkg/images/tv/display/zrgbim.x | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/pkg/images/tv/display/zrgbim.x b/pkg/images/tv/display/zrgbim.x new file mode 100644 index 00000000..04c0e147 --- /dev/null +++ b/pkg/images/tv/display/zrgbim.x @@ -0,0 +1,19 @@ +# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. + +include "zdisplay.h" + +# ZRGBIM -- Set RGB display. + +procedure zrgbim (red_chan, green_chan, blue_chan) + +int red_chan[ARB], green_chan[ARB], blue_chan[ARB] + +int device + +begin + device = red_chan[1] / DEVCODE + switch (device) { + case IIS_CHAN: + call iisrgb (red_chan, green_chan, blue_chan) + } +end |