aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Gpu/Engines/INvGpuEngine.cs
blob: 068878a9882cd7f4c1b2792f096ebc3d3a68fdde (plain)
1
2
3
4
5
6
7
8
9
10
11
using Ryujinx.HLE.Gpu.Memory;

namespace Ryujinx.HLE.Gpu.Engines
{
    interface INvGpuEngine
    {
        int[] Registers { get; }

        void CallMethod(NvGpuVmm Vmm, NvGpuPBEntry PBEntry);
    }
}