misc: chore: Use collection expressions everywhere else (except VP9)

This commit is contained in:
Evan Husted
2025-01-26 15:59:11 -06:00
parent 0f857400b6
commit ac838aa81d
59 changed files with 3246 additions and 2452 deletions

View File

@@ -57,10 +57,10 @@ namespace Ryujinx.Graphics.Texture.Encoders
}
}
private static readonly int[] _mostFrequentPartitions = new int[]
{
0, 13, 2, 1, 15, 14, 10, 23,
};
private static readonly int[] _mostFrequentPartitions =
[
0, 13, 2, 1, 15, 14, 10, 23
];
private static Block CompressBlock(ReadOnlySpan<byte> data, int x, int y, int width, int height, bool fastMode)
{