mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 07:18:39 +00:00
23 lines
564 B
C#
23 lines
564 B
C#
using System;
|
|
using System.Collections.ObjectModel;
|
|
|
|
namespace Ryujinx.HLE.Gpu
|
|
{
|
|
struct NvGpuPBEntry
|
|
{
|
|
public int Method { get; private set; }
|
|
|
|
public int SubChannel { get; private set; }
|
|
|
|
private int[] m_Arguments;
|
|
|
|
public ReadOnlyCollection<int> Arguments => Array.AsReadOnly(m_Arguments);
|
|
|
|
public NvGpuPBEntry(int Method, int SubChannel, params int[] Arguments)
|
|
{
|
|
this.Method = Method;
|
|
this.SubChannel = SubChannel;
|
|
this.m_Arguments = Arguments;
|
|
}
|
|
}
|
|
} |