INvGpuEngine.cs 197 B

1234567891011
  1. using ChocolArm64.Memory;
  2. namespace Ryujinx.Graphics.Gpu
  3. {
  4. interface INvGpuEngine
  5. {
  6. int[] Registers { get; }
  7. void CallMethod(AMemory Memory, NsGpuPBEntry PBEntry);
  8. }
  9. }