mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 14:31:42 +00:00
25 lines
No EOL
695 B
C#
25 lines
No EOL
695 B
C#
using Ryujinx.Graphics.Shader.IntermediateRepresentation;
|
|
|
|
namespace Ryujinx.Graphics.Shader.StructuredIr
|
|
{
|
|
class AstTextureOperation : AstOperation
|
|
{
|
|
public TextureTarget Target { get; }
|
|
public TextureFlags Flags { get; }
|
|
|
|
public int Handle { get; }
|
|
|
|
public AstTextureOperation(
|
|
Instruction inst,
|
|
TextureTarget target,
|
|
TextureFlags flags,
|
|
int handle,
|
|
int compMask,
|
|
params IAstNode[] sources) : base(inst, compMask, sources)
|
|
{
|
|
Target = target;
|
|
Flags = flags;
|
|
Handle = handle;
|
|
}
|
|
}
|
|
} |