2019-12-29 18:41:50 +01:00
|
|
|
using Ryujinx.Graphics.GAL;
|
2020-07-07 04:41:07 +02:00
|
|
|
using Ryujinx.Graphics.Shader;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Image
|
|
|
|
{
|
2019-12-30 00:26:37 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Texture binding information.
|
|
|
|
/// This is used for textures that needs to be accessed from shaders.
|
|
|
|
/// </summary>
|
2019-10-13 08:02:07 +02:00
|
|
|
struct TextureBindingInfo
|
|
|
|
{
|
2019-12-30 00:26:37 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Shader sampler target type.
|
|
|
|
/// </summary>
|
2019-10-13 08:02:07 +02:00
|
|
|
public Target Target { get; }
|
|
|
|
|
2020-10-21 00:03:20 +02:00
|
|
|
/// <summary>
|
|
|
|
/// For images, indicates the format specified on the shader.
|
|
|
|
/// </summary>
|
|
|
|
public Format Format { get; }
|
|
|
|
|
2020-11-08 12:10:00 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Shader texture host binding point.
|
|
|
|
/// </summary>
|
|
|
|
public int Binding { get; }
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
/// <summary>
|
2020-11-09 23:35:04 +01:00
|
|
|
/// Constant buffer slot with the texture handle.
|
2019-12-30 00:26:37 +01:00
|
|
|
/// </summary>
|
|
|
|
public int CbufSlot { get; }
|
|
|
|
|
|
|
|
/// <summary>
|
2020-11-09 23:35:04 +01:00
|
|
|
/// Index of the texture handle on the constant buffer at slot <see cref="CbufSlot"/>.
|
2019-12-30 00:26:37 +01:00
|
|
|
/// </summary>
|
2020-11-09 23:35:04 +01:00
|
|
|
public int Handle { get; }
|
2019-12-28 02:16:14 +01:00
|
|
|
|
2020-07-07 04:41:07 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Flags from the texture descriptor that indicate how the texture is used.
|
|
|
|
/// </summary>
|
|
|
|
public TextureUsageFlags Flags { get; }
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Constructs the texture binding information structure.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="target">The shader sampler target type</param>
|
2020-10-21 00:03:20 +02:00
|
|
|
/// <param name="format">Format of the image as declared on the shader</param>
|
2020-11-08 12:10:00 +01:00
|
|
|
/// <param name="binding">The shader texture binding point</param>
|
2020-11-09 23:35:04 +01:00
|
|
|
/// <param name="cbufSlot">Constant buffer slot where the texture handle is located</param>
|
2019-12-30 00:26:37 +01:00
|
|
|
/// <param name="handle">The shader texture handle (read index into the texture constant buffer)</param>
|
2020-07-07 04:41:07 +02:00
|
|
|
/// <param name="flags">The texture's usage flags, indicating how it is used in the shader</param>
|
2020-11-09 23:35:04 +01:00
|
|
|
public TextureBindingInfo(Target target, Format format, int binding, int cbufSlot, int handle, TextureUsageFlags flags)
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
2020-11-09 23:35:04 +01:00
|
|
|
Target = target;
|
|
|
|
Format = format;
|
|
|
|
Binding = binding;
|
|
|
|
CbufSlot = cbufSlot;
|
|
|
|
Handle = handle;
|
|
|
|
Flags = flags;
|
2019-12-28 02:16:14 +01:00
|
|
|
}
|
|
|
|
|
2020-10-21 00:03:20 +02:00
|
|
|
/// <summary>
|
|
|
|
/// Constructs the texture binding information structure.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="target">The shader sampler target type</param>
|
2020-11-08 12:10:00 +01:00
|
|
|
/// <param name="binding">The shader texture binding point</param>
|
2020-11-09 23:35:04 +01:00
|
|
|
/// <param name="cbufSlot">Constant buffer slot where the texture handle is located</param>
|
2020-10-21 00:03:20 +02: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-09 23:35:04 +01:00
|
|
|
public TextureBindingInfo(Target target, int binding, int cbufSlot, int handle, TextureUsageFlags flags) : this(target, (Format)0, binding, cbufSlot, handle, flags)
|
2020-10-21 00:03:20 +02:00
|
|
|
{
|
|
|
|
}
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
}
|