mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-10 12:41:50 +00:00
24 lines
No EOL
670 B
C#
24 lines
No EOL
670 B
C#
namespace Ryujinx.Graphics.Shader.IntermediateRepresentation
|
|
{
|
|
class TextureOperation : Operation
|
|
{
|
|
public SamplerType Type { get; }
|
|
public TextureFlags Flags { get; }
|
|
|
|
public int Handle { get; }
|
|
|
|
public TextureOperation(
|
|
Instruction inst,
|
|
SamplerType type,
|
|
TextureFlags flags,
|
|
int handle,
|
|
int compIndex,
|
|
Operand dest,
|
|
params Operand[] sources) : base(inst, compIndex, dest, sources)
|
|
{
|
|
Type = type;
|
|
Flags = flags;
|
|
Handle = handle;
|
|
}
|
|
}
|
|
} |