summaryrefslogtreecommitdiff
path: root/riscos
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2004-06-09 19:56:13 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2004-06-09 19:56:13 +0000
commitdb528c82f2b5879d1b28c16fe055febee0694264 (patch)
tree1d7ec44a8c14b0785dea2703679b7eba8568f244 /riscos
parent78594f3f60a2ce28f1d6ee95676bfa10492320fe (diff)
downloadnetsurf-db528c82f2b5879d1b28c16fe055febee0694264.tar.gz
netsurf-db528c82f2b5879d1b28c16fe055febee0694264.tar.bz2
[project @ 2004-06-09 19:56:13 by jmb]
Proper names for flagword flags. "Magic numbers are evil" (zamez :P) svn path=/import/netsurf/; revision=939
Diffstat (limited to 'riscos')
-rw-r--r--riscos/tinct.h12
1 files changed, 11 insertions, 1 deletions
diff --git a/riscos/tinct.h b/riscos/tinct.h
index 2be58db87..de06e2f69 100644
--- a/riscos/tinct.h
+++ b/riscos/tinct.h
@@ -6,7 +6,7 @@
*/
/** \file
- * Tinct SWI numbers
+ * Tinct SWI numbers and flags
*/
#ifndef _NETSURF_RISCOS_TINCT_H_
@@ -41,4 +41,14 @@
*/
#define Tinct_AvailableFeatures 0x57245
+/* Flags
+*/
+#define tinct_READ_SCREEN_BASE 0x01
+#define tinct_BILINEAR_FILTER 0x02
+#define tinct_DITHER 0x04
+#define tinct_INVERT_DITHER 0x08
+#define tinct_FILL_HORIZONTALLY 0x10
+#define tinct_FILL_VERTICALLY 0x20
+#define tinct_FORCE_PALETTE_READ 0x40
+
#endif