We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70f784b commit be8c840Copy full SHA for be8c840
xivModdingFramework/Textures/FileTypes/DDS.cs
@@ -58,6 +58,7 @@ public static class DDS
58
{ (uint)BitConverter.ToInt32(Encoding.ASCII.GetBytes("BC4U"), 0) , XivTexFormat.BC4 },
59
{ (uint)BitConverter.ToInt32(Encoding.ASCII.GetBytes("ATI2"), 0) , XivTexFormat.BC5 },
60
{ (uint)BitConverter.ToInt32(Encoding.ASCII.GetBytes("BC5U"), 0) , XivTexFormat.BC5 },
61
+ { (uint)BitConverter.ToInt32(Encoding.ASCII.GetBytes("AR12"), 0) , XivTexFormat.A4R4G4B4 },
62
{ (uint)BitConverter.ToInt32(Encoding.ASCII.GetBytes("AR15"), 0) , XivTexFormat.A1R5G5B5 },
63
64
//ARGB 16F
@@ -1078,4 +1079,4 @@ public enum DXGI_FORMAT : uint
1078
1079
DXGI_FORMAT_FORCE_UINT
1080
};
1081
}
-}
1082
+}
0 commit comments