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