Example #1
0
 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);
     }
 }