c465d771dd
* Enable multithreaded VP9 decoding * Limit the number of threads used for video decoding
11 lines
202 B
C#
11 lines
202 B
C#
using Ryujinx.Common.Memory;
|
|
|
|
namespace Ryujinx.Graphics.Nvdec.Vp9
|
|
{
|
|
internal struct TileBuffer
|
|
{
|
|
public int Col;
|
|
public ArrayPtr<byte> Data;
|
|
public int Size;
|
|
}
|
|
}
|