ScummVM API documentation
bylerledecodeM68K.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef SCUMM_BYLE_RLE_DECODE_M68K_H
23 #define SCUMM_BYLE_RLE_DECODE_M68K_H
24 
25 #include "scumm/base-costume.h"
26 
27 extern "C" void ByleRLEDecode_Mode0(
29  const byte _scaleX, /* unused */
30  const byte _scaleY, /* unused */
31  const int _height,
32  const int pitch,
33  const int _numStrips,
34  const byte *_srcPtr,
35  const byte *_shadowTable, /* unused */
36  const uint16 *_palette);
37 
38 extern "C" void ByleRLEDecode_Mode1(
40  const byte _scaleX, /* unused */
41  const byte _scaleY, /* unused */
42  const int _height,
43  const int pitch,
44  const int _numStrips,
45  const byte *_srcPtr,
46  const byte *_shadowTable,
47  const uint16 *_palette);
48 
49 extern "C" void ByleRLEDecode_Mode3(
51  const byte _scaleX, /* unused */
52  const byte _scaleY, /* unused */
53  const int _height,
54  const int pitch,
55  const int _numStrips,
56  const byte *_srcPtr,
57  const byte *_shadowTable,
58  const uint16 *_palette);
59 
60 extern "C" void ByleRLEDecode_Mode3_HE90(
62  const byte _scaleX,
63  const byte _scaleY,
64  const int _height,
65  const int pitch,
66  const int _numStrips,
67  const byte *_srcPtr,
68  const byte *_shadowTable,
69  const uint16 *_palette);
70 
71 extern "C" void ByleRLEDecode_Classic(
73  const byte _scaleX, /* unused */
74  const byte _scaleY, /* unused */
75  const int _height,
76  const int pitch,
77  const int _numStrips,
78  const byte *_srcPtr,
79  const byte *_shadowTable,
80  const uint16 *_palette /* unused */);
81 
82 extern "C" void ByleRLEDecode_Scaled_Mode0(
84  const byte _scaleX,
85  const byte _scaleY,
86  const int _height,
87  const int pitch,
88  const int _numStrips,
89  const byte *_srcPtr,
90  const byte *_shadowTable, /* unused */
91  const uint16 *_palette);
92 
93 extern "C" void ByleRLEDecode_Scaled_Mode0_SMask(
95  const byte _scaleX,
96  const byte _scaleY,
97  const int _height,
98  const int pitch,
99  const int _numStrips,
100  const byte *_srcPtr,
101  const byte *_shadowTable, /* unused */
102  const uint16 *_palette);
103 
104 extern "C" void ByleRLEDecode_Scaled_Mode1(
106  const byte _scaleX,
107  const byte _scaleY,
108  const int _height,
109  const int pitch,
110  const int _numStrips,
111  const byte *_srcPtr,
112  const byte *_shadowTable,
113  const uint16 *_palette);
114 
115 extern "C" void ByleRLEDecode_Scaled_Mode1_SMask(
117  const byte _scaleX,
118  const byte _scaleY,
119  const int _height,
120  const int pitch,
121  const int _numStrips,
122  const byte *_srcPtr,
123  const byte *_shadowTable,
124  const uint16 *_palette);
125 
126 extern "C" void ByleRLEDecode_Scaled_Mode3(
128  const byte _scaleX,
129  const byte _scaleY,
130  const int _height,
131  const int pitch,
132  const int _numStrips,
133  const byte *_srcPtr,
134  const byte *_shadowTable,
135  const uint16 *_palette);
136 
137 #endif
Definition: base-costume.h:114