Example #1
0
        public unsafe static void SortWhole(PixelWrapper Image)
        {
            Pixel[] px = Image.FastGetPixels();
            Array.Sort(px);

            Image.FastSetPixels(px);
        }