Compare commits

...

2 Commits

Author SHA1 Message Date
MaxLastBreath 330e1270ac
Update src/Ryujinx.Graphics.Vulkan/VulkanRenderer.cs
Co-authored-by: gdkchan <gab.dark.100@gmail.com>
2024-09-19 02:03:46 +03:00
MaxLastBreath 43a994f5d2
Update src/Ryujinx.Graphics.Gpu/Image/AutoDeleteCache.cs
Co-authored-by: gdkchan <gab.dark.100@gmail.com>
2024-09-18 23:51:14 +03:00
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ namespace Ryujinx.Graphics.Gpu.Image
/// <summary>
/// Initializes the cache, setting the maximum texture capacity for the specified GPU context.
/// </summary>
/// <param name="context"> The GPU context that the cache belongs to</param>
/// <param name="context">The GPU context that the cache belongs to</param>
public void Initialize(GpuContext context)
{
var CacheMemory = (ulong)(context.Capabilities.MaximumGpuMemory * MemoryScaleFactor);

View File

@ -785,7 +785,7 @@ namespace Ryujinx.Graphics.Vulkan
maximumGpuMemory: GetTotalGPUMemory());
}
public ulong GetTotalGPUMemory()
private ulong GetTotalGPUMemory()
{
ulong totalMemory = 0;