mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-28 01:17:11 +02:00
Use a more efficient range list on the buffer manager
This commit is contained in:
parent
a11f411c87
commit
d3b01b929c
4 changed files with 309 additions and 63 deletions
|
@ -198,7 +198,7 @@ namespace Ryujinx.Graphics.Gpu.Memory
|
|||
|
||||
private void CreateBuffer(ulong address, ulong size)
|
||||
{
|
||||
Buffer[] overlaps = _buffers.FindOverlaps(address, size);
|
||||
Buffer[] overlaps = _buffers.FindOverlapsNonOverlapping(address, size);
|
||||
|
||||
if (overlaps.Length != 0)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue