mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-04-28 17:42:54 +00:00
misc: chore: Use collection expressions everywhere else (except VP9)
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user