summaryrefslogtreecommitdiff
path: root/riscos/tinct.h
blob: de06e2f69235ff3ddf782a95a15927c83bd06bb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
 * This file is part of NetSurf, http://netsurf.sourceforge.net/
 * Licensed under the GNU General Public License,
 *                http://www.opensource.org/licenses/gpl-license
 * Copyright 2004 Richard Wilson <not_ginger_matt@hotmail.com>
 */

/** \file
 * Tinct SWI numbers and flags
 */

#ifndef _NETSURF_RISCOS_TINCT_H_
#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.
*/
#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.
*/
#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.
*/
#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.
*/
#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.
*/
#define Tinct_ConvertSprite 0x57244

/*	Tinct_AvailableFeatures returns the current feature set.
*/
#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