From efe6d906ba98111a5b1bed758a84fc97753d1dc7 Mon Sep 17 00:00:00 2001 From: Gabriel A Date: Sat, 21 Oct 2023 12:22:59 -0300 Subject: [PATCH] Make UpdateBuffers static --- src/Ryujinx.Graphics.Gpu/Memory/BufferManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx.Graphics.Gpu/Memory/BufferManager.cs b/src/Ryujinx.Graphics.Gpu/Memory/BufferManager.cs index d8d788ade..1d0184f81 100644 --- a/src/Ryujinx.Graphics.Gpu/Memory/BufferManager.cs +++ b/src/Ryujinx.Graphics.Gpu/Memory/BufferManager.cs @@ -774,7 +774,7 @@ namespace Ryujinx.Graphics.Gpu.Memory /// Updates data for the already bound buffer bindings. /// /// Bindings to update - private void UpdateBuffers(BuffersPerStage[] bindings) + private static void UpdateBuffers(BuffersPerStage[] bindings) { for (ShaderStage stage = ShaderStage.Vertex; stage <= ShaderStage.Fragment; stage++) {