From 40e5a5811c6ffce9b0974e93cdd927cbcf60c157 Mon Sep 17 00:00:00 2001 From: Joe Hunkeler Date: Tue, 11 Aug 2015 16:51:37 -0400 Subject: Repatch (from linux) of OSX IRAF --- sys/gio/sgikern/sgitxset.x | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 sys/gio/sgikern/sgitxset.x (limited to 'sys/gio/sgikern/sgitxset.x') diff --git a/sys/gio/sgikern/sgitxset.x b/sys/gio/sgikern/sgitxset.x new file mode 100644 index 00000000..c064d556 --- /dev/null +++ b/sys/gio/sgikern/sgitxset.x @@ -0,0 +1,29 @@ +# Copyright(c) 1986 Association of Universities for Research in Astronomy Inc. + +include +include +include "sgi.h" + +# SGI_TXSET -- Set the text drawing attributes. + +procedure sgi_txset (gki) + +short gki[ARB] # attribute structure + +pointer tx +include "sgi.com" + +begin + tx = SGI_TXAP(g_kt) + + TX_UP(tx) = gki[GKI_TXSET_UP] + TX_PATH(tx) = gki[GKI_TXSET_P ] + TX_HJUSTIFY(tx) = gki[GKI_TXSET_HJ] + TX_VJUSTIFY(tx) = gki[GKI_TXSET_VJ] + TX_FONT(tx) = gki[GKI_TXSET_F ] + TX_QUALITY(tx) = gki[GKI_TXSET_Q ] + TX_COLOR(tx) = gki[GKI_TXSET_CI] + + TX_SPACING(tx) = GKI_UNPACKREAL (gki[GKI_TXSET_SP]) + TX_SIZE(tx) = gki[GKI_TXSET_SZ] +end -- cgit