Utility/Loaders: Fix and enable DDS loader (experimental)

Former-commit-id: 647e4527d47bc82b25eb713b8e6ffc4f424ba6c3
This commit is contained in:
Lynix
2016-04-21 13:23:11 +02:00
parent 718713dbdd
commit de76b48fdd
6 changed files with 709 additions and 457 deletions

View File

@@ -168,6 +168,17 @@ namespace Nz
PixelFormatType_Max = PixelFormatType_Stencil16
};
enum PixelFormatSubType
{
PixelFormatSubType_Double, // F64
PixelFormatSubType_Float, // F32
PixelFormatSubType_Half, // F16
PixelFormatSubType_Int, // I32
PixelFormatSubType_Unsigned, // U32
PixelFormatSubType_Max = PixelFormatSubType_Unsigned
};
enum PixelFormatTypeType
{
PixelFormatTypeType_Undefined = -1,