Subversion Repositories gelsvn

Rev

Rev 555 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
369 jab 1
/*
2
	adding DDS loading support to stbi
3
*/
4
 
5
#ifndef HEADER_STB_IMAGE_DDS_AUGMENTATION
6
#define HEADER_STB_IMAGE_DDS_AUGMENTATION
7
 
8
//	is it a DDS file?
9
extern int      stbi_dds_test_memory      (stbi_uc const *buffer, int len);
10
 
11
extern stbi_uc *stbi_dds_load             (char *filename,           int *x, int *y, int *comp, int req_comp);
12
extern stbi_uc *stbi_dds_load_from_memory (stbi_uc const *buffer, int len, int *x, int *y, int *comp, int req_comp);
13
#ifndef STBI_NO_STDIO
14
extern int      stbi_dds_test_file        (FILE *f);
15
extern stbi_uc *stbi_dds_load_from_file   (FILE *f,                  int *x, int *y, int *comp, int req_comp);
16
#endif
17
 
18
//
19
//
20
////   end header file   /////////////////////////////////////////////////////
21
#endif // HEADER_STB_IMAGE_DDS_AUGMENTATION