From 8cba252b238ee6cf6599ad2fc57793e6f76c5e2e Mon Sep 17 00:00:00 2001 From: gdk Date: Sat, 26 Oct 2019 14:50:52 -0300 Subject: Add per-source type memory change tracking, simplified state change tracking, other fixes --- .../Nv/NvDrvServices/NvHostAsGpu/Types/AddressSpaceContext.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Ryujinx.HLE/HOS') diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AddressSpaceContext.cs b/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AddressSpaceContext.cs index 5238645e..bca9ba7c 100644 --- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AddressSpaceContext.cs +++ b/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvHostAsGpu/Types/AddressSpaceContext.cs @@ -59,9 +59,9 @@ namespace Ryujinx.HLE.HOS.Services.Nv.NvDrvServices.NvHostAsGpu.Types _cpuMemory.WriteBytes((long)address, data.ToArray()); } - public (ulong, ulong)[] GetModifiedRanges(ulong address, ulong size) + public (ulong, ulong)[] GetModifiedRanges(ulong address, ulong size, ResourceName name) { - return _cpuMemory.GetModifiedRanges(address, size); + return _cpuMemory.GetModifiedRanges(address, size, (int)name); } public int GetPageSize() -- cgit v1.2.3