2021-08-11 16:27:00 -04:00
|
|
|
namespace Ryujinx.Graphics.Shader.Decoders
|
|
|
|
{
|
2021-08-26 19:44:47 -04:00
|
|
|
interface IOpCodeAttribute : IOpCode
|
2021-08-11 16:27:00 -04:00
|
|
|
{
|
|
|
|
int AttributeOffset { get; }
|
|
|
|
int Count { get; }
|
2021-08-26 19:44:47 -04:00
|
|
|
bool Indexed { get; }
|
2021-08-11 16:27:00 -04:00
|
|
|
}
|
|
|
|
}
|