diff options
author | gdkchan <gab.dark.100@gmail.com> | 2021-08-11 17:27:00 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-11 22:27:00 +0200 |
commit | ed754af8d5046d2fd7218c742521e38ab17cbcfe (patch) | |
tree | d47eda40349a7b4b3fc34d9db9ddeea8f2d0676a /Ryujinx.Graphics.Shader/Decoders/IOpCodeAttribute.cs | |
parent | 10d649e6d3ad3e4af32d2b41e718bb0a2924da67 (diff) |
Make sure attributes used on subsequent shader stages are initialized (#2538)
Diffstat (limited to 'Ryujinx.Graphics.Shader/Decoders/IOpCodeAttribute.cs')
-rw-r--r-- | Ryujinx.Graphics.Shader/Decoders/IOpCodeAttribute.cs | 8 |
1 files changed, 8 insertions, 0 deletions
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 |