diff options
author | gdkchan <gab.dark.100@gmail.com> | 2020-07-25 03:39:45 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-25 16:39:45 +1000 |
commit | 111534a74e77664c2ab64c23e74d2173d6029b01 (patch) | |
tree | bb3a59b65759f1c2a45f35148628dad4009b2c46 /Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs | |
parent | 80d4199fb381a544786a6447adca998561d737dc (diff) |
Remove GPU MemoryAccessor (#1423)
* Remove GPU MemoryAccessor
* Update outdated XML doc
* Update more outdated stuff
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs')
-rw-r--r-- | Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs b/Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs index 2d988f8d..ace94442 100644 --- a/Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs +++ b/Ryujinx.Graphics.Gpu/Memory/MemoryManager.cs @@ -62,7 +62,6 @@ namespace Ryujinx.Graphics.Gpu.Memory /// <summary> /// Gets a read-only span of data from GPU mapped memory. - /// This reads as much data as possible, up to the specified maximum size. /// </summary> /// <param name="gpuVa">GPU virtual address where the data is located</param> /// <param name="size">Size of the data</param> @@ -90,6 +89,19 @@ namespace Ryujinx.Graphics.Gpu.Memory /// <summary> /// Writes data to GPU mapped memory. /// </summary> + /// <typeparam name="T">Type of the data</typeparam> + /// <param name="gpuVa">GPU virtual address to write the value into</param> + /// <param name="value">The value to be written</param> + public void Write<T>(ulong gpuVa, T value) where T : unmanaged + { + ulong processVa = Translate(gpuVa); + + _context.PhysicalMemory.Write(processVa, MemoryMarshal.Cast<T, byte>(MemoryMarshal.CreateSpan(ref value, 1))); + } + + /// <summary> + /// Writes data to GPU mapped memory. + /// </summary> /// <param name="gpuVa">GPU virtual address to write the data into</param> /// <param name="data">The data to be written</param> public void Write(ulong gpuVa, ReadOnlySpan<byte> data) |