aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Shader/IntermediateRepresentation/TextureOperation.cs
blob: 0c768345c553b67995822286e87269a72855551f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
namespace Ryujinx.Graphics.Shader.IntermediateRepresentation
{
    class TextureOperation : Operation
    {
        public TextureTarget Target { get; }
        public TextureFlags  Flags  { get; }

        public int Handle { get; }

        public TextureOperation(
            Instruction      inst,
            TextureTarget    target,
            TextureFlags     flags,
            int              handle,
            int              compIndex,
            Operand          dest,
            params Operand[] sources) : base(inst, compIndex, dest, sources)
        {
            Target = target;
            Flags  = flags;
            Handle = handle;
        }
    }
}