Beispiel #1
0
 private static void CallCompressImage(byte[] rgba, int width, int height, byte[] blocks, int flags)
 {
     if (Is64Bit() == true)
     {
         Native64.CompressImage(rgba, width, height, blocks, flags);
     }
     else
     {
         Native32.CompressImage(rgba, width, height, blocks, flags);
     }
 }