mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 23:38:39 +00:00
c465d771dd
* Enable multithreaded VP9 decoding * Limit the number of threads used for video decoding
12 lines
202 B
C#
12 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;
|
|
}
|
|
}
|