c4f56c5704
* 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;
|
|
}
|
|
}
|