Mercurial > mplayer.hg
annotate Gui/bitmap/tga/tga.h @ 6356:b54d7fd6471a
This script has no bash specific stuff, it's all standard bourne shell, so execute with sh.
Also see mail from Michaela.
author | atmos4 |
---|---|
date | Sun, 09 Jun 2002 14:48:16 +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 |