1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-09-20 14:03:35 +01:00
Ryujinx/Ryujinx.Graphics.Shader/StructuredIr/AstTextureOperation.cs

28 lines
807 B
C#

using Ryujinx.Graphics.Shader.IntermediateRepresentation;
namespace Ryujinx.Graphics.Shader.StructuredIr
{
class AstTextureOperation : AstOperation
{
public SamplerType Type { get; }
public TextureFlags Flags { get; }
public int Handle { get; }
public int ArraySize { get; }
public AstTextureOperation(
Instruction inst,
SamplerType type,
TextureFlags flags,
int handle,
int arraySize,
int index,
params IAstNode[] sources) : base(inst, index, sources)
{
Type = type;
Flags = flags;
Handle = handle;
ArraySize = arraySize;
}
}
}