コード例 #1
0
ファイル: UnsafePixelSorter.cs プロジェクト: PRSears/PxRT
        public unsafe static void SortWhole(PixelWrapper Image)
        {
            Pixel[] px = Image.FastGetPixels();
            Array.Sort(px);

            Image.FastSetPixels(px);
        }