aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/Memory/PhysicalMemory.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Memory/PhysicalMemory.cs')
-rw-r--r--Ryujinx.Graphics.Gpu/Memory/PhysicalMemory.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Gpu/Memory/PhysicalMemory.cs b/Ryujinx.Graphics.Gpu/Memory/PhysicalMemory.cs
index 051838f1..c1fc0c5c 100644
--- a/Ryujinx.Graphics.Gpu/Memory/PhysicalMemory.cs
+++ b/Ryujinx.Graphics.Gpu/Memory/PhysicalMemory.cs
@@ -22,6 +22,11 @@ namespace Ryujinx.Graphics.Gpu.Memory
private int _referenceCount;
/// <summary>
+ /// Indicates whenever the memory manager supports 4KB pages.
+ /// </summary>
+ public bool Supports4KBPages => _cpuMemory.Supports4KBPages;
+
+ /// <summary>
/// In-memory shader cache.
/// </summary>
public ShaderCache ShaderCache { get; }