From ed754af8d5046d2fd7218c742521e38ab17cbcfe Mon Sep 17 00:00:00 2001 From: gdkchan Date: Wed, 11 Aug 2021 17:27:00 -0300 Subject: Make sure attributes used on subsequent shader stages are initialized (#2538) --- Ryujinx.Graphics.Shader/Decoders/IOpCodeAttribute.cs | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 Ryujinx.Graphics.Shader/Decoders/IOpCodeAttribute.cs (limited to 'Ryujinx.Graphics.Shader/Decoders/IOpCodeAttribute.cs') diff --git a/Ryujinx.Graphics.Shader/Decoders/IOpCodeAttribute.cs b/Ryujinx.Graphics.Shader/Decoders/IOpCodeAttribute.cs new file mode 100644 index 00000000..b5b16f1b --- /dev/null +++ b/Ryujinx.Graphics.Shader/Decoders/IOpCodeAttribute.cs @@ -0,0 +1,8 @@ +namespace Ryujinx.Graphics.Shader.Decoders +{ + interface IOpCodeAttribute + { + int AttributeOffset { get; } + int Count { get; } + } +} \ No newline at end of file -- cgit v1.2.3