mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2025-06-28 23:20:46 -07:00
Fix wrong maximum id on sampler pool in some cases
This commit is contained in:
@ -11,12 +11,15 @@ namespace Ryujinx.Graphics.Gpu.Image
|
||||
|
||||
protected T[] Items;
|
||||
|
||||
public int MaximumId { get; }
|
||||
|
||||
public ulong Address { get; }
|
||||
public ulong Size { get; }
|
||||
|
||||
public Pool(GpuContext context, ulong address, int maximumId)
|
||||
{
|
||||
Context = context;
|
||||
Context = context;
|
||||
MaximumId = maximumId;
|
||||
|
||||
int count = maximumId + 1;
|
||||
|
||||
|
Reference in New Issue
Block a user