157ad3f54f
* Silence several build warnings * Remove fixed buffers from NVDEC struct * Remove unused field and usings * Fix wrong name * Silence more warning on H264 PictureInfo
13 lines
337 B
C#
13 lines
337 B
C#
namespace Ryujinx.Graphics.Vic.Types
|
|
{
|
|
struct PipeConfig
|
|
{
|
|
#pragma warning disable CS0169, CS0649
|
|
private long _word0;
|
|
private long _word1;
|
|
#pragma warning restore CS0169, CS0649
|
|
|
|
public int DownsampleHoriz => _word0.Extract(0, 11);
|
|
public int DownsampleVert => _word0.Extract(16, 11);
|
|
}
|
|
}
|