mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-06-11 05:35:28 +00:00

* Support for resources on non-contiguous GPU memory regions * Implement MultiRange physical addresses, only used with a single range for now * Actually use non-contiguous ranges * GetPhysicalRegions fixes * Documentation and remove Address property from TextureInfo * Finish implementing GetWritableRegion * Fix typo
10 lines
150 B
C#
10 lines
150 B
C#
using System;
|
|
|
|
namespace Ryujinx.Memory
|
|
{
|
|
public interface IWritableBlock
|
|
{
|
|
void Write(ulong va, ReadOnlySpan<byte> data);
|
|
}
|
|
}
|