mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-08-08 18:32:33 -07:00
Move solution and projects to src
This commit is contained in:
28
src/Ryujinx.Graphics.Nvdec/MemoryExtensions.cs
Normal file
28
src/Ryujinx.Graphics.Nvdec/MemoryExtensions.cs
Normal file
@@ -0,0 +1,28 @@
|
||||
using Ryujinx.Graphics.Gpu.Memory;
|
||||
using System;
|
||||
|
||||
namespace Ryujinx.Graphics.Nvdec
|
||||
{
|
||||
static class MemoryExtensions
|
||||
{
|
||||
public static T DeviceRead<T>(this MemoryManager gmm, uint offset) where T : unmanaged
|
||||
{
|
||||
return gmm.Read<T>((ulong)offset << 8);
|
||||
}
|
||||
|
||||
public static ReadOnlySpan<byte> DeviceGetSpan(this MemoryManager gmm, uint offset, int size)
|
||||
{
|
||||
return gmm.GetSpan((ulong)offset << 8, size);
|
||||
}
|
||||
|
||||
public static void DeviceWrite(this MemoryManager gmm, uint offset, ReadOnlySpan<byte> data)
|
||||
{
|
||||
gmm.Write((ulong)offset << 8, data);
|
||||
}
|
||||
|
||||
public static ulong ExtendOffset(uint offset)
|
||||
{
|
||||
return (ulong)offset << 8;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user