Mercurial > mplayer.hg
annotate Gui/bitmap/tga/tga.h @ 6164:aee9c32349a9
applied 64bit patch from Ulrich Hecht <uli at suse dot de>
author | alex |
---|---|
date | Thu, 23 May 2002 15:40:08 +0000 |
parents | dee4b2ea5e5b |
children |
rev | line source |
---|---|
1693 | 1 |
2 #ifndef _MYTGA | |
3 #define _MYTGA | |
4 | |
5 #include "../bitmap.h" | |
6 | |
7 typedef struct | |
8 { | |
9 char tmp[12]; | |
10 unsigned short sx; | |
11 unsigned short sy; | |
12 unsigned char depth; | |
13 unsigned char ctmp; | |
14 } tgaHeadert; | |
15 | |
16 extern int tgaRead( char * filename,txSample * bf ); | |
17 extern void tgaWriteBuffer( char * fname,unsigned char * Buffer,int sx,int sy,int BPP ); | |
18 extern void tgaWriteTexture( char * filename,txSample * bf ); | |
19 | |
20 | |
1991
dee4b2ea5e5b
add gui support to config scripts, and fixed some warning.
pontscho
parents:
1693
diff
changeset
|
21 #endif |