blob: 28ca61ae17a6d185fd2931e87fde14e24fa8a10e (
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
|
/*
* PARSEC HEADER: img_3df.h
*/
#ifndef _IMG_3DF_H_
#define _IMG_3DF_H_
// 3df format info
struct format_3df_s {
const char* spec;
dword format;
int texelsize;
int _mksiz16;
};
// external functions
format_3df_s* TDF_DecodeFormatInfo( char *formatspec );
int TDF_LoadTexture( char *fname, int insertindex, char *loaderparams, texfont_s *texfont );
#endif // _IMG_3DF_H_
|