mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 00:38:36 +00:00
25 lines
687 B
C#
25 lines
687 B
C#
|
using Ryujinx.Graphics.Shader.IntermediateRepresentation;
|
||
|
|
||
|
namespace Ryujinx.Graphics.Shader.StructuredIr
|
||
|
{
|
||
|
class AstTextureOperation : AstOperation
|
||
|
{
|
||
|
public TextureType Type { get; }
|
||
|
public TextureFlags Flags { get; }
|
||
|
|
||
|
public int Handle { get; }
|
||
|
|
||
|
public AstTextureOperation(
|
||
|
Instruction inst,
|
||
|
TextureType type,
|
||
|
TextureFlags flags,
|
||
|
int handle,
|
||
|
int compMask,
|
||
|
params IAstNode[] sources) : base(inst, compMask, sources)
|
||
|
{
|
||
|
Type = type;
|
||
|
Flags = flags;
|
||
|
Handle = handle;
|
||
|
}
|
||
|
}
|
||
|
}
|