From 8a6607540ea8933ef9f1f0ff40d910d5bfc3b600 Mon Sep 17 00:00:00 2001 From: sharmander Date: Fri, 11 Dec 2020 00:05:53 -0500 Subject: GPU: Improve unnecessary return value in Map function. (#1799) * Implement VFNMA.F<32/64> * Update PTC Version * Update Implementation & Renames & Correct Order * Add Logging * Additional logging * Add additional check to restart loop from beginning if address goes beyond maximum allowed. * Additional Check that the total range required doesn't exceed capacity of allocator addresses. * Improve logging * Ensure hex output * Update Ryujinx.HLE/HOS/Services/Nv/NvMemoryAllocator.cs Co-authored-by: gdkchan * Remove extra page at end * Remove unnecessary return val in Map function. * Remove incorrect description Co-authored-by: gdkchan --- Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs') diff --git a/Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs b/Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs index 2990fb52..b1b1a1a8 100644 --- a/Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs +++ b/Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs @@ -115,8 +115,7 @@ namespace Ryujinx.Graphics.Gpu.Memory /// CPU virtual address to map into /// GPU virtual address to be mapped /// Size in bytes of the mapping - /// GPU virtual address of the mapping - public ulong Map(ulong pa, ulong va, ulong size) + public void Map(ulong pa, ulong va, ulong size) { lock (_pageTable) { @@ -127,8 +126,6 @@ namespace Ryujinx.Graphics.Gpu.Memory SetPte(va + offset, pa + offset); } } - - return va; } /// -- cgit v1.2.3