mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 06:16:39 +00:00
ee1038e542
* Initial support for shader attribute indexing * Support output indexing too, other improvements * Fix order * Address feedback
9 lines
No EOL
193 B
C#
9 lines
No EOL
193 B
C#
namespace Ryujinx.Graphics.Shader.Decoders
|
|
{
|
|
interface IOpCodeAttribute : IOpCode
|
|
{
|
|
int AttributeOffset { get; }
|
|
int Count { get; }
|
|
bool Indexed { get; }
|
|
}
|
|
} |