diff options
Diffstat (limited to 'src/parsec/include/img_3df.h')
| -rw-r--r-- | src/parsec/include/img_3df.h | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/src/parsec/include/img_3df.h b/src/parsec/include/img_3df.h new file mode 100644 index 0000000..28ca61a --- /dev/null +++ b/src/parsec/include/img_3df.h @@ -0,0 +1,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_ + + |
