summaryrefslogtreecommitdiff
path: root/riscos/tinct.h
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2004-08-14 00:32:31 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2004-08-14 00:32:31 +0000
commit98a6a5fa995e7319ef75a1a0e9c63608d87b56ab (patch)
tree41d17330ac947fc9e24241a0d638be870b45dfac /riscos/tinct.h
parentc1d774c65f0073bd1dc62656cdc0464914427687 (diff)
downloadnetsurf-98a6a5fa995e7319ef75a1a0e9c63608d87b56ab.tar.gz
netsurf-98a6a5fa995e7319ef75a1a0e9c63608d87b56ab.tar.bz2
[project @ 2004-08-14 00:32:31 by rjw]
Changes for Tinct printing support svn path=/import/netsurf/; revision=1225
Diffstat (limited to 'riscos/tinct.h')
-rw-r--r--riscos/tinct.h13
1 files changed, 8 insertions, 5 deletions
diff --git a/riscos/tinct.h b/riscos/tinct.h
index de06e2f69..83567bbde 100644
--- a/riscos/tinct.h
+++ b/riscos/tinct.h
@@ -3,6 +3,8 @@
* Licensed under the GNU General Public License,
* http://www.opensource.org/licenses/gpl-license
* Copyright 2004 Richard Wilson <not_ginger_matt@hotmail.com>
+ *
+ * Complete details on using Tinct are available from http://www.tinct.net.
*/
/** \file
@@ -13,27 +15,27 @@
#define _NETSURF_RISCOS_TINCT_H_
/* Tinct_PlotAlpha plots the RGBA sprite pointed to by R2 at the OS screen location (R3,R4). Flags are
- supplied in R7 - see the Tinct documentation for further details.
+ supplied in R7.
*/
#define Tinct_PlotAlpha 0x57240
/* Tinct_PlotScaledAlpha plots the RGBA sprite pointed to by R2 at the OS screen location (R3,R4)
- scaled to (R5,R6) OS units. Flags are supplied in R7 - see the Tinct documentation for further details.
+ scaled to (R5,R6) OS units. Flags are supplied in R7.
*/
#define Tinct_PlotScaledAlpha 0x57241
/* Tinct_PlotAlpha plots the RGB0 sprite pointed to by R2 at the OS screen location (R3,R4). Flags are
- supplied in R7 - see the Tinct documentation for further details.
+ supplied in R7.
*/
#define Tinct_Plot 0x57242
/* Tinct_PlotScaledAlpha plots the RGB0 sprite pointed to by R2 at the OS screen location (R3,R4)
- scaled to (R5,R6) OS units. Flags are supplied in R7 - see the Tinct documentation for further details.
+ scaled to (R5,R6) OS units. Flags are supplied in R7.
*/
#define Tinct_PlotScaled 0x57243
/* Tinct_ConvertSprite creates a 32bpp sprite (pointer to memory supplied in R3) from a paletted sprite
- provided in R2 - see the Tinct documentation for further details.
+ provided in R2.
*/
#define Tinct_ConvertSprite 0x57244
@@ -50,5 +52,6 @@
#define tinct_FILL_HORIZONTALLY 0x10
#define tinct_FILL_VERTICALLY 0x20
#define tinct_FORCE_PALETTE_READ 0x40
+#define tinct_USE_OS_SPRITE_OP 0x80
#endif