aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Shader/Decoders/IOpCodeCbuf.cs
blob: 42a174514cc005c080e067894bce58472d03e1bb (plain) (blame)
1
2
3
4
5
6
7
8
namespace Ryujinx.Graphics.Shader.Decoders
{
    interface IOpCodeCbuf : IOpCode
    {
        int Offset { get; }
        int Slot   { get; }
    }
}