Use ReadOnlySpan<byte> compiler optimization for static data (#3130)
This commit is contained in:
parent
7e9011673b
commit
9ca040c0ff
8 changed files with 23 additions and 19 deletions
|
@ -15,7 +15,7 @@ namespace Ryujinx.Graphics.Nvdec.Vp9
|
|||
|
||||
public ISurface CreateSurface(int width, int height) => new Surface(width, height);
|
||||
|
||||
private static readonly byte[] LiteralToFilter = new byte[]
|
||||
private static ReadOnlySpan<byte> LiteralToFilter => new byte[]
|
||||
{
|
||||
Constants.EightTapSmooth,
|
||||
Constants.EightTap,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue