mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-06 02:08:28 +02:00
Use a more efficient range list on the buffer manager
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
Reference in New Issue
Block a user