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/IPipeline.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Ryujinx.Graphics.GAL/IPipeline.cs') diff --git a/Ryujinx.Graphics.GAL/IPipeline.cs b/Ryujinx.Graphics.GAL/IPipeline.cs index a7f13893..818712c3 100644 --- a/Ryujinx.Graphics.GAL/IPipeline.cs +++ b/Ryujinx.Graphics.GAL/IPipeline.cs @@ -75,7 +75,7 @@ namespace Ryujinx.Graphics.GAL void SetTexture(int index, ShaderStage stage, ITexture texture); - void SetTransformFeedbackBuffer(int index, BufferRange buffer); + void SetTransformFeedbackBuffers(ReadOnlySpan buffers); void SetUniformBuffer(int index, ShaderStage stage, BufferRange buffer); void SetUserClipDistance(int index, bool enableClip); -- cgit v1.2.3