mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2025-04-17 14:34:05 -05:00

* Add support for bindless textures from shader input (vertex buffer) * Shader cache version bump * Format whitespace * Remove cache entries on pool removal, disable for OpenGL * PR feedback
62 lines
1.6 KiB
C#
62 lines
1.6 KiB
C#
namespace Ryujinx.Graphics.Shader.IntermediateRepresentation
|
|
{
|
|
class TextureOperation : Operation
|
|
{
|
|
public const int DefaultCbufSlot = -1;
|
|
|
|
public SamplerType Type { get; set; }
|
|
public TextureFormat Format { get; set; }
|
|
public TextureFlags Flags { get; private set; }
|
|
|
|
public int Binding { get; private set; }
|
|
public int SamplerBinding { get; private set; }
|
|
|
|
public TextureOperation(
|
|
Instruction inst,
|
|
SamplerType type,
|
|
TextureFormat format,
|
|
TextureFlags flags,
|
|
int binding,
|
|
int compIndex,
|
|
Operand[] dests,
|
|
Operand[] sources) : base(inst, compIndex, dests, sources)
|
|
{
|
|
Type = type;
|
|
Format = format;
|
|
Flags = flags;
|
|
Binding = binding;
|
|
SamplerBinding = -1;
|
|
}
|
|
|
|
public void TurnIntoArray(int binding)
|
|
{
|
|
Flags &= ~TextureFlags.Bindless;
|
|
Binding = binding;
|
|
}
|
|
|
|
public void TurnIntoArray(int textureBinding, int samplerBinding)
|
|
{
|
|
TurnIntoArray(textureBinding);
|
|
|
|
SamplerBinding = samplerBinding;
|
|
}
|
|
|
|
public void SetBinding(int binding)
|
|
{
|
|
if ((Flags & TextureFlags.Bindless) != 0)
|
|
{
|
|
Flags &= ~TextureFlags.Bindless;
|
|
|
|
RemoveSource(0);
|
|
}
|
|
|
|
Binding = binding;
|
|
}
|
|
|
|
public void SetLodLevelFlag()
|
|
{
|
|
Flags |= TextureFlags.LodLevel;
|
|
}
|
|
}
|
|
}
|