blob: aca1829252184601123cd9280dbbc07bf56d709f (
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 ksquirrel-libs (http://ksquirrel.sf.net)
Copyright (c) 2004 Dmitry Baryshev <ksquirrel@tut.by>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation;
either version 2 of the License, or (at your option) any later
version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
as32 with this library; see the file COPYING. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KSQUIRREL_READ_IMAGE_ras
#define KSQUIRREL_READ_IMAGE_ras
struct RAS_HEADER
{
u32 ras_magic;
u32 ras_width;
u32 ras_height;
u32 ras_depth;
u32 ras_length;
u32 ras_type;
u32 ras_maptype;
u32 ras_maplength;
}PACKED;
#define RAS_MAGIC 0x59A66A95 // Magic number for Sun rasterfiles
#define RAS_OLD 0 // Old format (raw image in 68000 byte order)
#define RAS_STANDARD 1 // Raw image in 68000 byte order
#define RAS_BYTE_ENCODED 2 // Run-length encoding of bytes
#define RAS_RGB 3 // XRGB or RGB instead of XBGR or BGR
#define RAS_TIFF 4 // TIFF <-> standard rasterfile
#define RAS_IFF 5 // IFF (TAAC format) <-> standard rasterfile
#define RAS_EXPERIMENTAL 0xffff // Reserved for testing
#define RMT_NONE 0 // maplength is expected to be 0
#define RMT_EQUAL_RGB 1 // red[maplength/3], green[maplength/3], blue[maplength/3]
#define RMT_RAW 2 // Raw colormap
#define RESC 128 // Run-length encoding escape character
#endif
|