2019-12-29 17:41:50 +00:00
|
|
|
using Ryujinx.Graphics.GAL;
|
2020-07-07 02:41:07 +00:00
|
|
|
using Ryujinx.Graphics.Shader;
|
2019-10-13 06:02:07 +00:00
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Image
|
|
|
|
{
|
2019-12-29 23:26:37 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Texture binding information.
|
|
|
|
/// This is used for textures that needs to be accessed from shaders.
|
|
|
|
/// </summary>
|
2019-10-13 06:02:07 +00:00
|
|
|
struct TextureBindingInfo
|
|
|
|
{
|
2019-12-29 23:26:37 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Shader sampler target type.
|
|
|
|
/// </summary>
|
2019-10-13 06:02:07 +00:00
|
|
|
public Target Target { get; }
|
|
|
|
|
2020-10-20 22:03:20 +00:00
|
|
|
/// <summary>
|
|
|
|
/// For images, indicates the format specified on the shader.
|
|
|
|
/// </summary>
|
|
|
|
public Format Format { get; }
|
|
|
|
|
2020-11-08 11:10:00 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Shader texture host binding point.
|
|
|
|
/// </summary>
|
|
|
|
public int Binding { get; }
|
|
|
|
|
2019-12-29 23:26:37 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Shader texture handle.
|
2020-01-01 23:14:18 +00:00
|
|
|
/// This is an index into the texture constant buffer.
|
2019-12-29 23:26:37 +00:00
|
|
|
/// </summary>
|
2019-10-13 06:02:07 +00:00
|
|
|
public int Handle { get; }
|
|
|
|
|
2019-12-29 23:26:37 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Indicates if the texture is a bindless texture.
|
|
|
|
/// </summary>
|
2020-01-01 15:39:09 +00:00
|
|
|
/// <remarks>
|
|
|
|
/// For those textures, Handle is ignored.
|
|
|
|
/// </remarks>
|
2019-12-28 01:16:14 +00:00
|
|
|
public bool IsBindless { get; }
|
|
|
|
|
2019-12-29 23:26:37 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Constant buffer slot with the bindless texture handle, for bindless texture.
|
|
|
|
/// </summary>
|
|
|
|
public int CbufSlot { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Constant buffer offset of the bindless texture handle, for bindless texture.
|
|
|
|
/// </summary>
|
2019-12-28 01:16:14 +00:00
|
|
|
public int CbufOffset { get; }
|
|
|
|
|
2020-07-07 02:41:07 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Flags from the texture descriptor that indicate how the texture is used.
|
|
|
|
/// </summary>
|
|
|
|
public TextureUsageFlags Flags { get; }
|
|
|
|
|
2019-12-29 23:26:37 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Constructs the texture binding information structure.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="target">The shader sampler target type</param>
|
2020-10-20 22:03:20 +00:00
|
|
|
/// <param name="format">Format of the image as declared on the shader</param>
|
2020-11-08 11:10:00 +00:00
|
|
|
/// <param name="binding">The shader texture binding point</param>
|
2019-12-29 23:26:37 +00:00
|
|
|
/// <param name="handle">The shader texture handle (read index into the texture constant buffer)</param>
|
2020-07-07 02:41:07 +00:00
|
|
|
/// <param name="flags">The texture's usage flags, indicating how it is used in the shader</param>
|
2020-11-08 11:10:00 +00:00
|
|
|
public TextureBindingInfo(Target target, Format format, int binding, int handle, TextureUsageFlags flags)
|
2019-10-13 06:02:07 +00:00
|
|
|
{
|
2020-11-08 11:10:00 +00:00
|
|
|
Target = target;
|
|
|
|
Format = format;
|
|
|
|
Binding = binding;
|
|
|
|
Handle = handle;
|
2019-12-28 01:16:14 +00:00
|
|
|
|
|
|
|
IsBindless = false;
|
|
|
|
|
|
|
|
CbufSlot = 0;
|
|
|
|
CbufOffset = 0;
|
2020-07-07 02:41:07 +00:00
|
|
|
|
|
|
|
Flags = flags;
|
2019-12-28 01:16:14 +00:00
|
|
|
}
|
|
|
|
|
2020-10-20 22:03:20 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Constructs the texture binding information structure.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="target">The shader sampler target type</param>
|
2020-11-08 11:10:00 +00:00
|
|
|
/// <param name="binding">The shader texture binding point</param>
|
2020-10-20 22:03:20 +00:00
|
|
|
/// <param name="handle">The shader texture handle (read index into the texture constant buffer)</param>
|
|
|
|
/// <param name="flags">The texture's usage flags, indicating how it is used in the shader</param>
|
2020-11-08 11:10:00 +00:00
|
|
|
public TextureBindingInfo(Target target, int binding, int handle, TextureUsageFlags flags) : this(target, (Format)0, binding, handle, flags)
|
2020-10-20 22:03:20 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2019-12-29 23:26:37 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Constructs the bindless texture binding information structure.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="target">The shader sampler target type</param>
|
2020-11-08 11:10:00 +00:00
|
|
|
/// <param name="binding">The shader texture binding point</param>
|
2019-12-29 23:26:37 +00:00
|
|
|
/// <param name="cbufSlot">Constant buffer slot where the bindless texture handle is located</param>
|
|
|
|
/// <param name="cbufOffset">Constant buffer offset of the bindless texture handle</param>
|
2020-07-07 02:41:07 +00:00
|
|
|
/// <param name="flags">The texture's usage flags, indicating how it is used in the shader</param>
|
2020-11-08 11:10:00 +00:00
|
|
|
public TextureBindingInfo(Target target, int binding, int cbufSlot, int cbufOffset, TextureUsageFlags flags)
|
2019-12-28 01:16:14 +00:00
|
|
|
{
|
2020-11-08 11:10:00 +00:00
|
|
|
Target = target;
|
|
|
|
Format = 0;
|
|
|
|
Binding = binding;
|
|
|
|
Handle = 0;
|
2019-12-28 01:16:14 +00:00
|
|
|
|
|
|
|
IsBindless = true;
|
|
|
|
|
|
|
|
CbufSlot = cbufSlot;
|
|
|
|
CbufOffset = cbufOffset;
|
2020-07-07 02:41:07 +00:00
|
|
|
|
|
|
|
Flags = flags;
|
2019-10-13 06:02:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|