NvHostProfGpuDeviceFile.cs 328 B

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