diff options
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Image/Pool.cs')
| -rw-r--r-- | Ryujinx.Graphics.Gpu/Image/Pool.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Gpu/Image/Pool.cs b/Ryujinx.Graphics.Gpu/Image/Pool.cs index 7457de19..5ce8d7f6 100644 --- a/Ryujinx.Graphics.Gpu/Image/Pool.cs +++ b/Ryujinx.Graphics.Gpu/Image/Pool.cs @@ -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; |
