mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-10-02 16:50:20 -07:00

* dotnet format style --severity info Some changes were manually reverted. * dotnet format analyzers --serverity info Some changes have been minimally adapted. * Restore a few unused methods and variables * Silence dotnet format IDE0060 warnings * Silence dotnet format IDE0059 warnings * Address dotnet format CA1816 warnings * Fix new dotnet-format issues after rebase * Address most dotnet format whitespace warnings * Apply dotnet format whitespace formatting A few of them have been manually reverted and the corresponding warning was silenced * Format if-blocks correctly * Another rebase, another dotnet format run * Run dotnet format whitespace after rebase * Run dotnet format style after rebase * Run dotnet format analyzers after rebase * Run dotnet format style after rebase * Run dotnet format after rebase and remove unused usings - analyzers - style - whitespace * Disable 'prefer switch expression' rule * Add comments to disabled warnings * Simplify properties and array initialization, Use const when possible, Remove trailing commas * Run dotnet format after rebase * Address IDE0251 warnings * Address a few disabled IDE0060 warnings * Silence IDE0060 in .editorconfig * Revert "Simplify properties and array initialization, Use const when possible, Remove trailing commas" This reverts commit 9462e4136c0a2100dc28b20cf9542e06790aa67e. * dotnet format whitespace after rebase * First dotnet format pass * Fix naming rule violations * Remove redundant code * Rename generics * Address review feedback * Remove SetOrigin
78 lines
2.1 KiB
C#
78 lines
2.1 KiB
C#
namespace Ryujinx.Graphics.Vulkan
|
|
{
|
|
internal class BufferUsageBitmap
|
|
{
|
|
private readonly BitMap _bitmap;
|
|
private readonly int _size;
|
|
private readonly int _granularity;
|
|
private readonly int _bits;
|
|
|
|
private readonly int _intsPerCb;
|
|
private readonly int _bitsPerCb;
|
|
|
|
public BufferUsageBitmap(int size, int granularity)
|
|
{
|
|
_size = size;
|
|
_granularity = granularity;
|
|
_bits = (size + (granularity - 1)) / granularity;
|
|
|
|
_intsPerCb = (_bits + (BitMap.IntSize - 1)) / BitMap.IntSize;
|
|
_bitsPerCb = _intsPerCb * BitMap.IntSize;
|
|
|
|
_bitmap = new BitMap(_bitsPerCb * CommandBufferPool.MaxCommandBuffers);
|
|
}
|
|
|
|
public void Add(int cbIndex, int offset, int size)
|
|
{
|
|
if (size == 0)
|
|
{
|
|
return;
|
|
}
|
|
|
|
// Some usages can be out of bounds (vertex buffer on amd), so bound if necessary.
|
|
if (offset + size > _size)
|
|
{
|
|
size = _size - offset;
|
|
}
|
|
|
|
int cbBase = cbIndex * _bitsPerCb;
|
|
int start = cbBase + offset / _granularity;
|
|
int end = cbBase + (offset + size - 1) / _granularity;
|
|
|
|
_bitmap.SetRange(start, end);
|
|
}
|
|
|
|
public bool OverlapsWith(int cbIndex, int offset, int size)
|
|
{
|
|
if (size == 0)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
int cbBase = cbIndex * _bitsPerCb;
|
|
int start = cbBase + offset / _granularity;
|
|
int end = cbBase + (offset + size - 1) / _granularity;
|
|
|
|
return _bitmap.IsSet(start, end);
|
|
}
|
|
|
|
public bool OverlapsWith(int offset, int size)
|
|
{
|
|
for (int i = 0; i < CommandBufferPool.MaxCommandBuffers; i++)
|
|
{
|
|
if (OverlapsWith(i, offset, size))
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
public void Clear(int cbIndex)
|
|
{
|
|
_bitmap.ClearInt(cbIndex * _intsPerCb, (cbIndex + 1) * _intsPerCb - 1);
|
|
}
|
|
}
|
|
}
|