aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/BufferRange.cs
diff options
context:
space:
mode:
authorgdkchan <gab.dark.100@gmail.com>2020-10-25 17:23:42 -0300
committerGitHub <noreply@github.com>2020-10-25 17:23:42 -0300
commit812e32f7753d452f5c6776fa18e2b2a26b4ff3bb (patch)
tree4dd4c085b5e20686dbc80d14b04024108909800d /Ryujinx.Graphics.GAL/BufferRange.cs
parentcf0f0fc4e740c774eadaa328dc543ee9a03fbd09 (diff)
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
Diffstat (limited to 'Ryujinx.Graphics.GAL/BufferRange.cs')
-rw-r--r--Ryujinx.Graphics.GAL/BufferRange.cs2
1 files changed, 1 insertions, 1 deletions
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; }