2018-02-05 00:08:20 +01:00
|
|
|
using System;
|
|
|
|
using System.Collections.ObjectModel;
|
|
|
|
|
2018-06-11 02:46:42 +02:00
|
|
|
namespace Ryujinx.HLE.Gpu
|
2018-02-05 00:08:20 +01:00
|
|
|
{
|
2018-06-09 02:15:56 +02:00
|
|
|
struct NvGpuPBEntry
|
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);
|
|
|
|
|
NvServices refactoring (#120)
* Initial implementation of NvMap/NvHostCtrl
* More work on NvHostCtrl
* Refactoring of nvservices, move GPU Vmm, make Vmm per-process, refactor most gpu devices, move Gpu to Core, fix CbBind
* Implement GetGpuTime, support CancelSynchronization, fix issue on InsertWaitingMutex, proper double buffering support (again, not working properly for commercial games, only hb)
* Try to fix perf regression reading/writing textures, moved syncpts and events to a UserCtx class, delete global state when the process exits, other minor tweaks
* Remove now unused code, add comment about probably wrong result codes
2018-05-07 20:53:23 +02:00
|
|
|
public NvGpuPBEntry(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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|