コード例 #1
0
ファイル: Native.cs プロジェクト: denfrost/Mafia3-SDSExplorer
 private static void CallDecompressImage(byte[] rgba, int width, int height, byte[] blocks, int flags)
 {
     if (Is64Bit() == true)
     {
         Native64.DecompressImage(rgba, width, height, blocks, flags);
     }
     else
     {
         Native32.DecompressImage(rgba, width, height, blocks, flags);
     }
 }