INvGpuEngine.cs 164 B

123456789
  1. namespace Ryujinx.Core.Gpu
  2. {
  3. interface INvGpuEngine
  4. {
  5. int[] Registers { get; }
  6. void CallMethod(NvGpuVmm Vmm, NvGpuPBEntry PBEntry);
  7. }
  8. }