2018-02-05 00:08:20 +01:00
|
|
|
using System;
|
|
|
|
using System.Collections.ObjectModel;
|
|
|
|
|
2018-02-20 21:09:23 +01:00
|
|
|
namespace Ryujinx.Graphics.Gpu
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-02-20 21:09:23 +01:00
|
|
|
public struct NsGpuPBEntry
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-04-08 21:17:35 +02: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);
|
|
|
|
|
2018-04-08 21:17:35 +02:00
|
|
|
public NsGpuPBEntry(int Method, int SubChannel, params int[] Arguments)
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-04-08 21:17:35 +02:00
|
|
|
this.Method = Method;
|
2018-02-05 00:08:20 +01:00
|
|
|
this.SubChannel = SubChannel;
|
|
|
|
this.m_Arguments = Arguments;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|