Ryujinx/Ryujinx.Graphics/Gpu/NsGpuPBEntry.cs

23 lines
576 B
C#
Raw Normal View History

2018-02-05 00:08:20 +01:00
using System;
using System.Collections.ObjectModel;
namespace Ryujinx.Graphics.Gpu
2018-02-05 00:08:20 +01:00
{
public struct NsGpuPBEntry
2018-02-05 00:08:20 +01:00
{
public int Method { get; private set; }
2018-02-05 00:08:20 +01:00
public int SubChannel { get; private set; }
private int[] m_Arguments;
public ReadOnlyCollection<int> Arguments => Array.AsReadOnly(m_Arguments);
public NsGpuPBEntry(int Method, int SubChannel, params int[] Arguments)
2018-02-05 00:08:20 +01:00
{
this.Method = Method;
2018-02-05 00:08:20 +01:00
this.SubChannel = SubChannel;
this.m_Arguments = Arguments;
}
}
}