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