Ryujinx/Ryujinx.Graphics.Texture/SizeInfo.cs
gdkchan c4f56c5704
Support for resources on non-contiguous GPU memory regions (#1905)
* 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
2021-01-17 19:44:34 +01:00

66 lines
1.6 KiB
C#

using System;
namespace Ryujinx.Graphics.Texture
{
public struct SizeInfo
{
private readonly int[] _mipOffsets;
private readonly int[] _allOffsets;
private readonly int _levels;
public int LayerSize { get; }
public int TotalSize { get; }
public SizeInfo(int size)
{
_mipOffsets = new int[] { 0 };
_allOffsets = new int[] { 0 };
_levels = 1;
LayerSize = size;
TotalSize = size;
}
internal SizeInfo(
int[] mipOffsets,
int[] allOffsets,
int levels,
int layerSize,
int totalSize)
{
_mipOffsets = mipOffsets;
_allOffsets = allOffsets;
_levels = levels;
LayerSize = layerSize;
TotalSize = totalSize;
}
public int GetMipOffset(int level)
{
if ((uint)level >= _mipOffsets.Length)
{
throw new ArgumentOutOfRangeException(nameof(level));
}
return _mipOffsets[level];
}
public bool FindView(int offset, out int firstLayer, out int firstLevel)
{
int index = Array.BinarySearch(_allOffsets, offset);
if (index < 0)
{
firstLayer = 0;
firstLevel = 0;
return false;
}
firstLayer = index / _levels;
firstLevel = index - (firstLayer * _levels);
return true;
}
}
}