2021-08-11 22:27:00 +02:00
|
|
|
namespace Ryujinx.Graphics.Shader.Decoders
|
|
|
|
{
|
2021-08-27 01:44:47 +02:00
|
|
|
interface IOpCodeAttribute : IOpCode
|
2021-08-11 22:27:00 +02:00
|
|
|
{
|
|
|
|
int AttributeOffset { get; }
|
|
|
|
int Count { get; }
|
2021-08-27 01:44:47 +02:00
|
|
|
bool Indexed { get; }
|
2021-08-11 22:27:00 +02:00
|
|
|
}
|
|
|
|
}
|