aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/Decoders/IOpCodeTld4.cs
blob: 219d00cbf7001a979b5f076d2f80be45ecfbd7d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace Ryujinx.Graphics.Shader.Decoders
{
    interface IOpCodeTld4 : IOpCodeTexture
    {
        TextureGatherOffset Offset { get; }

        int GatherCompIndex { get; }

        bool Bindless { get; }
    }
}