mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-30 23:07:44 +02: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
9 lines
181 B
C#
9 lines
181 B
C#
namespace Ryujinx.Memory.Range
|
|
{
|
|
public interface IMultiRangeItem
|
|
{
|
|
MultiRange Range { get; }
|
|
|
|
ulong BaseAddress => Range.GetSubRange(0).Address;
|
|
}
|
|
}
|