From 812e32f7753d452f5c6776fa18e2b2a26b4ff3bb Mon Sep 17 00:00:00 2001 From: gdkchan Date: Sun, 25 Oct 2020 17:23:42 -0300 Subject: Fix transform feedback errors caused by host pause/resume and multiple uses (#1634) * Fix transform feedback errors caused by host pause/resume * Fix TFB being used as something else issue with copies * This is supposed to be StreamCopy --- Ryujinx.Graphics.GAL/BufferRange.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Ryujinx.Graphics.GAL/BufferRange.cs') diff --git a/Ryujinx.Graphics.GAL/BufferRange.cs b/Ryujinx.Graphics.GAL/BufferRange.cs index 34d523f9..9a030c80 100644 --- a/Ryujinx.Graphics.GAL/BufferRange.cs +++ b/Ryujinx.Graphics.GAL/BufferRange.cs @@ -4,7 +4,7 @@ namespace Ryujinx.Graphics.GAL { private static readonly BufferRange _empty = new BufferRange(BufferHandle.Null, 0, 0); - public BufferRange Empty => _empty; + public static BufferRange Empty => _empty; public BufferHandle Handle { get; } -- cgit v1.2.3