NvHostDbgGpuDeviceFile.cs 338 B

1234567891011
  1. using Ryujinx.Memory;
  2. using System;
  3. namespace Ryujinx.HLE.HOS.Services.Nv.NvDrvServices.NvHostDbgGpu
  4. {
  5. class NvHostDbgGpuDeviceFile : NvDeviceFile
  6. {
  7. public NvHostDbgGpuDeviceFile(ServiceCtx context, IVirtualMemoryManager memory, ulong owner) : base(context, owner) { }
  8. public override void Close() { }
  9. }
  10. }