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