OpenMoHAA 0.82.0
Loading...
Searching...
No Matches
TGAFile.h
1/* TGA File REader Classs Implementation File
2 This Implementation Allows the reading of TGA (Targa) Files
3 into an RGB buffer. Also the class allows an RGB Buffer to be
4 written to a TGA File. There is also a function to determine
5 the dimensions of a TGA file.
6
7 Created By: Timothy A. Bish
8 Created On: 08/17/98
9
10*/
11
12#ifndef TGAFILEH
13#define TGAFILEH
14
15unsigned char * LoadTGAFile
16(
17 const char * filename,
18 int * width,
19 int * height
20);
21
22#endif