INvGpuEngine.cs 198 B

1234567891011
  1. using Ryujinx.Graphics.Memory;
  2. namespace Ryujinx.Graphics
  3. {
  4. interface INvGpuEngine
  5. {
  6. int[] Registers { get; }
  7. void CallMethod(NvGpuVmm Vmm, GpuMethodCall MethCall);
  8. }
  9. }