aboutsummaryrefslogtreecommitdiff
path: root/pkg/images/tv/display/dspmmap.x
diff options
context:
space:
mode:
authorJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
committerJoe Hunkeler <jhunkeler@gmail.com>2015-08-11 16:51:37 -0400
commit40e5a5811c6ffce9b0974e93cdd927cbcf60c157 (patch)
tree4464880c571602d54f6ae114729bf62a89518057 /pkg/images/tv/display/dspmmap.x
downloadiraf-osx-40e5a5811c6ffce9b0974e93cdd927cbcf60c157.tar.gz
Repatch (from linux) of OSX IRAF
Diffstat (limited to 'pkg/images/tv/display/dspmmap.x')
-rw-r--r--pkg/images/tv/display/dspmmap.x20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkg/images/tv/display/dspmmap.x b/pkg/images/tv/display/dspmmap.x
new file mode 100644
index 00000000..e20689f1
--- /dev/null
+++ b/pkg/images/tv/display/dspmmap.x
@@ -0,0 +1,20 @@
+# DS_PMMAP -- Open a pixel mask READ_ONLY.
+
+pointer procedure ds_pmmap (pmname, refim)
+
+char pmname[ARB] #I Pixel mask name
+pointer refim #I Reference image pointer
+
+pointer sp, mname
+pointer im, yt_mappm()
+errchk yt_mappm
+
+begin
+ call smark (sp)
+ call salloc (mname, SZ_FNAME, TY_CHAR)
+
+ im = yt_mappm (pmname, refim, "pmmatch", Memc[mname], SZ_FNAME)
+
+ call sfree (sp)
+ return (im)
+end