]> icculus.org git repositories - taylor/freespace2.git/blob - include/tgautils.h
More changes, took out a lot of the sound/* stuff which will bite later but
[taylor/freespace2.git] / include / tgautils.h
1 /*
2  * $Logfile: /Freespace2/code/TgaUtils/TgaUtils.h $
3  * $Revision$
4  * $Date$
5  * $Author$
6  *
7  *
8  * $Log$
9  * Revision 1.2  2002/05/04 04:36:56  theoddone33
10  * More changes, took out a lot of the sound/* stuff which will bite later but
11  * I don't care.
12  *
13  * Revision 1.1.1.1  2002/05/03 03:28:12  root
14  * Initial import.
15  *
16  * 
17  * 3     3/20/99 3:46p Dave
18  * Added support for model-based background nebulae. Added 3 new
19  * sexpressions.
20  * 
21  * 2     12/01/98 4:46p Dave
22  * Put in targa bitmap support (16 bit).
23  *  
24  * $NoKeywords: $
25  */
26
27
28 #ifndef __TARGA_H
29 #define __TARGA_H
30
31 #include "pstypes.h"
32
33 // --------------------
34 //
35 // Defines
36 //
37 // --------------------
38
39 #define TARGA_ERROR_NONE                        0
40 #define TARGA_ERROR_READING             1
41 #define TARGA_ERROR_WRITING             2
42
43 // --------------------
44 //
45 // Prototypes
46 //
47 // --------------------
48
49 int targa_read_header(char *filename, int *w, int *h, int *bpp, ubyte *palette=NULL );
50 int targa_read_bitmap(char *filename, ubyte *data, ubyte *palette, int dest_size );
51 int targa_write_bitmap(char *filename, ubyte *data, ubyte *palette, int w, int h, int bpp);
52
53 // The following are used by the tools\vani code.
54 int targa_compress(char *out, char *in, int outsize, int pixsize, int bytecount);
55 int targa_uncompress( ubyte *dst, ubyte *src, int bitmap_width, int bytes_per_pixel );
56
57 #endif // __TARGA_H
58