934a78005e
* Simplify logic for bindless texture handling * Nits
34 lines
No EOL
1 KiB
C#
34 lines
No EOL
1 KiB
C#
using Ryujinx.Graphics.Shader.IntermediateRepresentation;
|
|
|
|
namespace Ryujinx.Graphics.Shader.StructuredIr
|
|
{
|
|
class AstTextureOperation : AstOperation
|
|
{
|
|
public SamplerType Type { get; }
|
|
public TextureFormat Format { get; }
|
|
public TextureFlags Flags { get; }
|
|
|
|
public int CbufSlot { get; }
|
|
public int Handle { get; }
|
|
public int ArraySize { get; }
|
|
|
|
public AstTextureOperation(
|
|
Instruction inst,
|
|
SamplerType type,
|
|
TextureFormat format,
|
|
TextureFlags flags,
|
|
int cbufSlot,
|
|
int handle,
|
|
int arraySize,
|
|
int index,
|
|
params IAstNode[] sources) : base(inst, index, sources, sources.Length)
|
|
{
|
|
Type = type;
|
|
Format = format;
|
|
Flags = flags;
|
|
CbufSlot = cbufSlot;
|
|
Handle = handle;
|
|
ArraySize = arraySize;
|
|
}
|
|
}
|
|
} |