Ryujinx/Ryujinx.Graphics.Shader/Decoders/IOpCodeAttribute.cs
gdkchan ee1038e542
Initial support for shader attribute indexing (#2546)
* Initial support for shader attribute indexing

* Support output indexing too, other improvements

* Fix order

* Address feedback
2021-08-27 01:44:47 +02:00

9 lines
No EOL
193 B
C#

namespace Ryujinx.Graphics.Shader.Decoders
{
interface IOpCodeAttribute : IOpCode
{
int AttributeOffset { get; }
int Count { get; }
bool Indexed { get; }
}
}