aboutsummaryrefslogtreecommitdiff
path: root/pkg/images/tv/display/dspmmap.x
diff options
context:
space:
mode:
authorJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
committerJoseph Hunkeler <jhunkeler@gmail.com>2015-07-08 20:46:52 -0400
commitfa080de7afc95aa1c19a6e6fc0e0708ced2eadc4 (patch)
treebdda434976bc09c864f2e4fa6f16ba1952b1e555 /pkg/images/tv/display/dspmmap.x
downloadiraf-linux-fa080de7afc95aa1c19a6e6fc0e0708ced2eadc4.tar.gz
Initial commit
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