diff options
Diffstat (limited to 'Ryujinx.Graphics.GAL')
| -rw-r--r-- | Ryujinx.Graphics.GAL/BufferRange.cs | 2 | ||||
| -rw-r--r-- | Ryujinx.Graphics.GAL/IPipeline.cs | 2 |
2 files changed, 2 insertions, 2 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; } 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<BufferRange> buffers); void SetUniformBuffer(int index, ShaderStage stage, BufferRange buffer); void SetUserClipDistance(int index, bool enableClip); |
