CommonLibSSE (powerof3)
GFxFileConstants.h
Go to the documentation of this file.
1 #pragma once
2 
3 namespace RE
4 {
6  {
7  public:
8  // FileFormatType is an enumeration including all file formats supported and/or used by GFx.
9  enum class FileFormatType
10  {
11  kUnopened, // No attempt was made to open file, so its format is not yet determined
12  kUnknown, // The file was opened, but its format is unknown
13 
14  // Swf file formats
15  kSWF, // SWF file formats
16  kGFX, // GFX file format (extracted SWF)
17 
18  // Image formats supported by swf
19  kJPEG = 10, // JPEG image file format
20  kPNG = 11, // PNG image file format
21  kGIF = 12, // GIF image file format
22  // Other image formats
23  kTGA = 13, // TGA image file format
24  kDDS = 14, // DDS compressed texture file format
25  kHDR = 15, // HDR image file format
26  kBMP = 16, // BMP image file format
27  kDIB = 17, // DIB image file format
28  kPFM = 18, // PFM image file format
29  kTIFF = 19, // TIFF image file format
30 
31  // Sound formats
32  kWAVE = 20, // WAVE sound file format
33 
34  kNextAvail,
35  kOriginal = 65535
36  };
37  };
38 }
Definition: GFxFileConstants.h:6
FileFormatType
Definition: GFxFileConstants.h:10
Definition: AbsorbEffect.h:6