2021-06-24 01:51:41 +02:00
|
|
|
|
using Ryujinx.Graphics.GAL;
|
2021-07-11 22:20:40 +02:00
|
|
|
|
using Ryujinx.Graphics.Gpu.Engine.Types;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
using System;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Image
|
|
|
|
|
{
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Texture manager.
|
|
|
|
|
/// </summary>
|
2019-12-31 23:09:49 +01:00
|
|
|
|
class TextureManager : IDisposable
|
2019-10-13 08:02:07 +02:00
|
|
|
|
{
|
2019-12-30 00:26:37 +01:00
|
|
|
|
private readonly GpuContext _context;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
|
private readonly TextureBindingsManager _cpBindingsManager;
|
|
|
|
|
private readonly TextureBindingsManager _gpBindingsManager;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
|
private readonly Texture[] _rtColors;
|
|
|
|
|
private readonly ITexture[] _rtHostColors;
|
2021-01-17 19:44:34 +01:00
|
|
|
|
private Texture _rtDepthStencil;
|
2019-12-30 00:26:37 +01:00
|
|
|
|
private ITexture _rtHostDs;
|
|
|
|
|
|
2022-01-11 20:15:17 +01:00
|
|
|
|
public int ClipRegionWidth { get; private set; }
|
|
|
|
|
public int ClipRegionHeight { get; private set; }
|
|
|
|
|
|
2020-07-07 04:41:07 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The scaling factor applied to all currently bound render targets.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public float RenderTargetScale { get; private set; } = 1f;
|
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// <summary>
|
2021-06-24 01:51:41 +02:00
|
|
|
|
/// Creates a new instance of the texture manager.
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// </summary>
|
2021-06-24 01:51:41 +02:00
|
|
|
|
/// <param name="context">GPU context that the texture manager belongs to</param>
|
|
|
|
|
/// <param name="channel">GPU channel that the texture manager belongs to</param>
|
|
|
|
|
public TextureManager(GpuContext context, GpuChannel channel)
|
2019-10-13 08:02:07 +02:00
|
|
|
|
{
|
2019-10-18 04:41:18 +02:00
|
|
|
|
_context = context;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
2019-11-22 18:17:06 +01:00
|
|
|
|
TexturePoolCache texturePoolCache = new TexturePoolCache(context);
|
|
|
|
|
|
2021-09-28 23:52:27 +02:00
|
|
|
|
float[] scales = new float[64];
|
|
|
|
|
new Span<float>(scales).Fill(1f);
|
|
|
|
|
|
|
|
|
|
_cpBindingsManager = new TextureBindingsManager(context, channel, texturePoolCache, scales, isCompute: true);
|
|
|
|
|
_gpBindingsManager = new TextureBindingsManager(context, channel, texturePoolCache, scales, isCompute: false);
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
|
|
_rtColors = new Texture[Constants.TotalRenderTargets];
|
|
|
|
|
_rtHostColors = new ITexture[Constants.TotalRenderTargets];
|
2019-10-18 04:41:18 +02:00
|
|
|
|
}
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// <summary>
|
2021-09-19 14:03:05 +02:00
|
|
|
|
/// Rents the texture bindings array of the compute pipeline.
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// </summary>
|
2021-09-19 14:03:05 +02:00
|
|
|
|
/// <param name="count">The number of bindings needed</param>
|
|
|
|
|
/// <returns>The texture bindings array</returns>
|
|
|
|
|
public TextureBindingInfo[] RentComputeTextureBindings(int count)
|
2019-10-18 04:41:18 +02:00
|
|
|
|
{
|
2021-09-19 14:03:05 +02:00
|
|
|
|
return _cpBindingsManager.RentTextureBindings(0, count);
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// <summary>
|
2021-09-19 14:03:05 +02:00
|
|
|
|
/// Rents the texture bindings array for a given stage on the graphics pipeline.
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="stage">The index of the shader stage to bind the textures</param>
|
2021-09-19 14:03:05 +02:00
|
|
|
|
/// <param name="count">The number of bindings needed</param>
|
|
|
|
|
/// <returns>The texture bindings array</returns>
|
|
|
|
|
public TextureBindingInfo[] RentGraphicsTextureBindings(int stage, int count)
|
2019-10-13 08:02:07 +02:00
|
|
|
|
{
|
2021-09-19 14:03:05 +02:00
|
|
|
|
return _gpBindingsManager.RentTextureBindings(stage, count);
|
2019-10-18 04:41:18 +02:00
|
|
|
|
}
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// <summary>
|
2021-09-19 14:03:05 +02:00
|
|
|
|
/// Rents the image bindings array of the compute pipeline.
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// </summary>
|
2021-09-19 14:03:05 +02:00
|
|
|
|
/// <param name="count">The number of bindings needed</param>
|
|
|
|
|
/// <returns>The image bindings array</returns>
|
|
|
|
|
public TextureBindingInfo[] RentComputeImageBindings(int count)
|
2019-10-18 04:41:18 +02:00
|
|
|
|
{
|
2021-09-19 14:03:05 +02:00
|
|
|
|
return _cpBindingsManager.RentImageBindings(0, count);
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// <summary>
|
2021-09-19 14:03:05 +02:00
|
|
|
|
/// Rents the image bindings array for a given stage on the graphics pipeline.
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="stage">The index of the shader stage to bind the images</param>
|
2021-09-19 14:03:05 +02:00
|
|
|
|
/// <param name="count">The number of bindings needed</param>
|
|
|
|
|
/// <returns>The image bindings array</returns>
|
|
|
|
|
public TextureBindingInfo[] RentGraphicsImageBindings(int stage, int count)
|
2019-10-13 08:02:07 +02:00
|
|
|
|
{
|
2021-09-19 14:03:05 +02:00
|
|
|
|
return _gpBindingsManager.RentImageBindings(stage, count);
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Sets the texture constant buffer index on the compute pipeline.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="index">The texture constant buffer index</param>
|
2019-10-18 04:41:18 +02:00
|
|
|
|
public void SetComputeTextureBufferIndex(int index)
|
2019-10-13 08:02:07 +02:00
|
|
|
|
{
|
2019-10-18 04:41:18 +02:00
|
|
|
|
_cpBindingsManager.SetTextureBufferIndex(index);
|
|
|
|
|
}
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Sets the texture constant buffer index on the graphics pipeline.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="index">The texture constant buffer index</param>
|
2019-10-18 04:41:18 +02:00
|
|
|
|
public void SetGraphicsTextureBufferIndex(int index)
|
|
|
|
|
{
|
|
|
|
|
_gpBindingsManager.SetTextureBufferIndex(index);
|
|
|
|
|
}
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Sets the current sampler pool on the compute pipeline.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="gpuVa">The start GPU virtual address of the sampler pool</param>
|
|
|
|
|
/// <param name="maximumId">The maximum ID of the sampler pool</param>
|
2019-12-30 18:44:22 +01:00
|
|
|
|
/// <param name="samplerIndex">The indexing type of the sampler pool</param>
|
2019-12-05 21:34:47 +01:00
|
|
|
|
public void SetComputeSamplerPool(ulong gpuVa, int maximumId, SamplerIndex samplerIndex)
|
2019-10-18 04:41:18 +02:00
|
|
|
|
{
|
2019-12-05 21:34:47 +01:00
|
|
|
|
_cpBindingsManager.SetSamplerPool(gpuVa, maximumId, samplerIndex);
|
2019-10-18 04:41:18 +02:00
|
|
|
|
}
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Sets the current sampler pool on the graphics pipeline.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="gpuVa">The start GPU virtual address of the sampler pool</param>
|
|
|
|
|
/// <param name="maximumId">The maximum ID of the sampler pool</param>
|
2019-12-30 18:44:22 +01:00
|
|
|
|
/// <param name="samplerIndex">The indexing type of the sampler pool</param>
|
2019-12-05 21:34:47 +01:00
|
|
|
|
public void SetGraphicsSamplerPool(ulong gpuVa, int maximumId, SamplerIndex samplerIndex)
|
2019-10-18 04:41:18 +02:00
|
|
|
|
{
|
2019-12-05 21:34:47 +01:00
|
|
|
|
_gpBindingsManager.SetSamplerPool(gpuVa, maximumId, samplerIndex);
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Sets the current texture pool on the compute pipeline.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="gpuVa">The start GPU virtual address of the texture pool</param>
|
|
|
|
|
/// <param name="maximumId">The maximum ID of the texture pool</param>
|
2019-10-18 04:41:18 +02:00
|
|
|
|
public void SetComputeTexturePool(ulong gpuVa, int maximumId)
|
2019-10-13 08:02:07 +02:00
|
|
|
|
{
|
2019-10-18 04:41:18 +02:00
|
|
|
|
_cpBindingsManager.SetTexturePool(gpuVa, maximumId);
|
|
|
|
|
}
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Sets the current texture pool on the graphics pipeline.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="gpuVa">The start GPU virtual address of the texture pool</param>
|
|
|
|
|
/// <param name="maximumId">The maximum ID of the texture pool</param>
|
2019-10-18 04:41:18 +02:00
|
|
|
|
public void SetGraphicsTexturePool(ulong gpuVa, int maximumId)
|
|
|
|
|
{
|
|
|
|
|
_gpBindingsManager.SetTexturePool(gpuVa, maximumId);
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-11 22:44:51 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Check if a texture's scale must be updated to match the configured resolution scale.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="texture">The texture to check</param>
|
|
|
|
|
/// <returns>True if the scale needs updating, false if the scale is up to date</returns>
|
|
|
|
|
private bool ScaleNeedsUpdated(Texture texture)
|
|
|
|
|
{
|
|
|
|
|
return texture != null && !(texture.ScaleMode == TextureScaleMode.Blacklisted || texture.ScaleMode == TextureScaleMode.Undesired) && texture.ScaleFactor != GraphicsConfig.ResScale;
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Sets the render target color buffer.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="index">The index of the color buffer to set (up to 8)</param>
|
|
|
|
|
/// <param name="color">The color buffer texture</param>
|
2020-07-07 04:41:07 +02:00
|
|
|
|
/// <returns>True if render target scale must be updated.</returns>
|
|
|
|
|
public bool SetRenderTargetColor(int index, Texture color)
|
2019-10-13 08:02:07 +02:00
|
|
|
|
{
|
2020-07-07 04:41:07 +02:00
|
|
|
|
bool hasValue = color != null;
|
|
|
|
|
bool changesScale = (hasValue != (_rtColors[index] != null)) || (hasValue && RenderTargetScale != color.ScaleFactor);
|
2021-03-02 23:30:54 +01:00
|
|
|
|
|
|
|
|
|
if (_rtColors[index] != color)
|
|
|
|
|
{
|
|
|
|
|
_rtColors[index]?.SignalModifying(false);
|
2021-07-03 06:55:04 +02:00
|
|
|
|
|
|
|
|
|
if (color != null)
|
|
|
|
|
{
|
|
|
|
|
color.SynchronizeMemory();
|
|
|
|
|
color.SignalModifying(true);
|
|
|
|
|
}
|
2021-03-02 23:30:54 +01:00
|
|
|
|
|
|
|
|
|
_rtColors[index] = color;
|
|
|
|
|
}
|
2020-07-07 04:41:07 +02:00
|
|
|
|
|
2021-08-11 22:44:51 +02:00
|
|
|
|
return changesScale || ScaleNeedsUpdated(color);
|
2020-07-07 04:41:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-04-02 16:33:39 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Sets the render target depth-stencil buffer.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="depthStencil">The depth-stencil buffer texture</param>
|
|
|
|
|
/// <returns>True if render target scale must be updated.</returns>
|
|
|
|
|
public bool SetRenderTargetDepthStencil(Texture depthStencil)
|
|
|
|
|
{
|
|
|
|
|
bool hasValue = depthStencil != null;
|
|
|
|
|
bool changesScale = (hasValue != (_rtDepthStencil != null)) || (hasValue && RenderTargetScale != depthStencil.ScaleFactor);
|
|
|
|
|
|
|
|
|
|
if (_rtDepthStencil != depthStencil)
|
|
|
|
|
{
|
|
|
|
|
_rtDepthStencil?.SignalModifying(false);
|
2021-07-03 06:55:04 +02:00
|
|
|
|
|
|
|
|
|
if (depthStencil != null)
|
|
|
|
|
{
|
|
|
|
|
depthStencil.SynchronizeMemory();
|
|
|
|
|
depthStencil.SignalModifying(true);
|
|
|
|
|
}
|
2021-04-02 16:33:39 +02:00
|
|
|
|
|
|
|
|
|
_rtDepthStencil = depthStencil;
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-11 22:44:51 +02:00
|
|
|
|
return changesScale || ScaleNeedsUpdated(depthStencil);
|
2021-04-02 16:33:39 +02:00
|
|
|
|
}
|
|
|
|
|
|
2022-01-11 20:15:17 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Sets the host clip region, which should be the intersection of all render target texture sizes.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="width">Width of the clip region, defined as the minimum width across all bound textures</param>
|
|
|
|
|
/// <param name="height">Height of the clip region, defined as the minimum height across all bound textures</param>
|
|
|
|
|
public void SetClipRegion(int width, int height)
|
|
|
|
|
{
|
|
|
|
|
ClipRegionWidth = width;
|
|
|
|
|
ClipRegionHeight = height;
|
|
|
|
|
}
|
|
|
|
|
|
2020-11-02 20:53:23 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the first available bound colour target, or the depth stencil target if not present.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <returns>The first bound colour target, otherwise the depth stencil target</returns>
|
|
|
|
|
public Texture GetAnyRenderTarget()
|
|
|
|
|
{
|
|
|
|
|
return _rtColors[0] ?? _rtDepthStencil;
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-07 04:41:07 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Updates the Render Target scale, given the currently bound render targets.
|
|
|
|
|
/// This will update scale to match the configured scale, scale textures that are eligible but not scaled,
|
|
|
|
|
/// and propagate blacklisted status from one texture to the ones bound with it.
|
|
|
|
|
/// </summary>
|
2020-07-13 13:41:30 +02:00
|
|
|
|
/// <param name="singleUse">If this is not -1, it indicates that only the given indexed target will be used.</param>
|
2020-07-07 04:41:07 +02:00
|
|
|
|
public void UpdateRenderTargetScale(int singleUse)
|
|
|
|
|
{
|
|
|
|
|
// Make sure all scales for render targets are at the highest they should be. Blacklisted targets should propagate their scale to the other targets.
|
|
|
|
|
bool mismatch = false;
|
|
|
|
|
bool blacklisted = false;
|
|
|
|
|
bool hasUpscaled = false;
|
2021-08-11 22:44:51 +02:00
|
|
|
|
bool hasUndesired = false;
|
2020-07-07 04:41:07 +02:00
|
|
|
|
float targetScale = GraphicsConfig.ResScale;
|
|
|
|
|
|
|
|
|
|
void ConsiderTarget(Texture target)
|
|
|
|
|
{
|
|
|
|
|
if (target == null) return;
|
|
|
|
|
float scale = target.ScaleFactor;
|
|
|
|
|
|
|
|
|
|
switch (target.ScaleMode)
|
|
|
|
|
{
|
|
|
|
|
case TextureScaleMode.Blacklisted:
|
|
|
|
|
mismatch |= scale != 1f;
|
|
|
|
|
blacklisted = true;
|
|
|
|
|
break;
|
|
|
|
|
case TextureScaleMode.Eligible:
|
|
|
|
|
mismatch = true; // We must make a decision.
|
|
|
|
|
break;
|
2021-08-11 22:44:51 +02:00
|
|
|
|
case TextureScaleMode.Undesired:
|
|
|
|
|
hasUndesired = true;
|
|
|
|
|
mismatch |= scale != 1f || hasUpscaled; // If another target is upscaled, scale this one up too.
|
|
|
|
|
break;
|
2020-07-07 04:41:07 +02:00
|
|
|
|
case TextureScaleMode.Scaled:
|
|
|
|
|
hasUpscaled = true;
|
2021-08-11 22:44:51 +02:00
|
|
|
|
mismatch |= hasUndesired || scale != targetScale; // If the target scale has changed, reset the scale for all targets.
|
2020-07-07 04:41:07 +02:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (singleUse != -1)
|
|
|
|
|
{
|
|
|
|
|
// If only one target is in use (by a clear, for example) the others do not need to be checked for mismatching scale.
|
|
|
|
|
ConsiderTarget(_rtColors[singleUse]);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
foreach (Texture color in _rtColors)
|
|
|
|
|
{
|
|
|
|
|
ConsiderTarget(color);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ConsiderTarget(_rtDepthStencil);
|
|
|
|
|
|
|
|
|
|
mismatch |= blacklisted && hasUpscaled;
|
|
|
|
|
|
2021-08-11 22:44:51 +02:00
|
|
|
|
if (blacklisted || (hasUndesired && !hasUpscaled))
|
2020-07-07 04:41:07 +02:00
|
|
|
|
{
|
|
|
|
|
targetScale = 1f;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (mismatch)
|
|
|
|
|
{
|
|
|
|
|
if (blacklisted)
|
|
|
|
|
{
|
|
|
|
|
// Propagate the blacklisted state to the other textures.
|
|
|
|
|
foreach (Texture color in _rtColors)
|
|
|
|
|
{
|
|
|
|
|
color?.BlacklistScale();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_rtDepthStencil?.BlacklistScale();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
// Set the scale of the other textures.
|
|
|
|
|
foreach (Texture color in _rtColors)
|
|
|
|
|
{
|
|
|
|
|
color?.SetScale(targetScale);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_rtDepthStencil?.SetScale(targetScale);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RenderTargetScale = targetScale;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-11-10 19:37:49 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a texture and a sampler from their respective pools from a texture ID and a sampler ID.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="textureId">ID of the texture</param>
|
|
|
|
|
/// <param name="samplerId">ID of the sampler</param>
|
|
|
|
|
public (Texture, Sampler) GetGraphicsTextureAndSampler(int textureId, int samplerId)
|
|
|
|
|
{
|
|
|
|
|
return _gpBindingsManager.GetTextureAndSampler(textureId, samplerId);
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Commits bindings on the compute pipeline.
|
|
|
|
|
/// </summary>
|
2019-10-18 04:41:18 +02:00
|
|
|
|
public void CommitComputeBindings()
|
2019-10-13 08:02:07 +02:00
|
|
|
|
{
|
2019-10-26 19:50:52 +02:00
|
|
|
|
// Every time we switch between graphics and compute work,
|
2019-10-18 04:41:18 +02:00
|
|
|
|
// we must rebind everything.
|
|
|
|
|
// Since compute work happens less often, we always do that
|
|
|
|
|
// before and after the compute dispatch.
|
|
|
|
|
_cpBindingsManager.Rebind();
|
|
|
|
|
_cpBindingsManager.CommitBindings();
|
|
|
|
|
_gpBindingsManager.Rebind();
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Commits bindings on the graphics pipeline.
|
|
|
|
|
/// </summary>
|
2019-10-18 04:41:18 +02:00
|
|
|
|
public void CommitGraphicsBindings()
|
2019-10-13 08:02:07 +02:00
|
|
|
|
{
|
2019-10-18 04:41:18 +02:00
|
|
|
|
_gpBindingsManager.CommitBindings();
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
2019-10-18 04:41:18 +02:00
|
|
|
|
UpdateRenderTargets();
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2020-04-22 01:35:28 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a texture descriptor used on the compute pipeline.
|
|
|
|
|
/// </summary>
|
2021-07-08 01:56:06 +02:00
|
|
|
|
/// <param name="poolGpuVa">GPU virtual address of the texture pool</param>
|
|
|
|
|
/// <param name="bufferIndex">Index of the constant buffer with texture handles</param>
|
|
|
|
|
/// <param name="maximumId">Maximum ID of the texture pool</param>
|
2020-04-22 01:35:28 +02:00
|
|
|
|
/// <param name="handle">Shader "fake" handle of the texture</param>
|
2021-05-19 20:05:43 +02:00
|
|
|
|
/// <param name="cbufSlot">Shader constant buffer slot of the texture</param>
|
2020-04-22 01:35:28 +02:00
|
|
|
|
/// <returns>The texture descriptor</returns>
|
2021-07-08 01:56:06 +02:00
|
|
|
|
public TextureDescriptor GetComputeTextureDescriptor(ulong poolGpuVa, int bufferIndex, int maximumId, int handle, int cbufSlot)
|
2020-04-22 01:35:28 +02:00
|
|
|
|
{
|
2021-07-08 01:56:06 +02:00
|
|
|
|
return _cpBindingsManager.GetTextureDescriptor(poolGpuVa, bufferIndex, maximumId, 0, handle, cbufSlot);
|
2020-04-22 01:35:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a texture descriptor used on the graphics pipeline.
|
|
|
|
|
/// </summary>
|
2021-07-08 01:56:06 +02:00
|
|
|
|
/// <param name="poolGpuVa">GPU virtual address of the texture pool</param>
|
|
|
|
|
/// <param name="bufferIndex">Index of the constant buffer with texture handles</param>
|
|
|
|
|
/// <param name="maximumId">Maximum ID of the texture pool</param>
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// <param name="stageIndex">Index of the shader stage where the texture is bound</param>
|
|
|
|
|
/// <param name="handle">Shader "fake" handle of the texture</param>
|
2021-05-19 20:05:43 +02:00
|
|
|
|
/// <param name="cbufSlot">Shader constant buffer slot of the texture</param>
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// <returns>The texture descriptor</returns>
|
2021-07-08 01:56:06 +02:00
|
|
|
|
public TextureDescriptor GetGraphicsTextureDescriptor(
|
|
|
|
|
ulong poolGpuVa,
|
|
|
|
|
int bufferIndex,
|
|
|
|
|
int maximumId,
|
|
|
|
|
int stageIndex,
|
|
|
|
|
int handle,
|
|
|
|
|
int cbufSlot)
|
2019-12-16 05:59:46 +01:00
|
|
|
|
{
|
2021-07-08 01:56:06 +02:00
|
|
|
|
return _gpBindingsManager.GetTextureDescriptor(poolGpuVa, bufferIndex, maximumId, stageIndex, handle, cbufSlot);
|
2019-12-16 05:59:46 +01:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Update host framebuffer attachments based on currently bound render target buffers.
|
|
|
|
|
/// </summary>
|
2020-09-24 01:48:34 +02:00
|
|
|
|
public void UpdateRenderTargets()
|
2019-10-13 08:02:07 +02:00
|
|
|
|
{
|
|
|
|
|
bool anyChanged = false;
|
|
|
|
|
|
|
|
|
|
if (_rtHostDs != _rtDepthStencil?.HostTexture)
|
|
|
|
|
{
|
|
|
|
|
_rtHostDs = _rtDepthStencil?.HostTexture;
|
|
|
|
|
|
|
|
|
|
anyChanged = true;
|
|
|
|
|
}
|
|
|
|
|
|
2019-10-31 00:45:01 +01:00
|
|
|
|
for (int index = 0; index < _rtColors.Length; index++)
|
2019-10-13 08:02:07 +02:00
|
|
|
|
{
|
2019-10-31 00:45:01 +01:00
|
|
|
|
ITexture hostTexture = _rtColors[index]?.HostTexture;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
2019-10-31 00:45:01 +01:00
|
|
|
|
if (_rtHostColors[index] != hostTexture)
|
2019-10-13 08:02:07 +02:00
|
|
|
|
{
|
2019-10-31 00:45:01 +01:00
|
|
|
|
_rtHostColors[index] = hostTexture;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
|
|
anyChanged = true;
|
|
|
|
|
}
|
2019-10-31 00:45:01 +01:00
|
|
|
|
}
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
2019-10-31 00:45:01 +01:00
|
|
|
|
if (anyChanged)
|
|
|
|
|
{
|
|
|
|
|
_context.Renderer.Pipeline.SetRenderTargets(_rtHostColors, _rtHostDs);
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-07 04:41:07 +02:00
|
|
|
|
/// <summary>
|
2022-01-11 20:15:17 +01:00
|
|
|
|
/// Update host framebuffer attachments based on currently bound render target buffers.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// All attachments other than <paramref name="index"/> will be unbound.
|
|
|
|
|
/// </remarks>
|
|
|
|
|
/// <param name="index">Index of the render target color to be updated</param>
|
|
|
|
|
public void UpdateRenderTarget(int index)
|
|
|
|
|
{
|
|
|
|
|
new Span<ITexture>(_rtHostColors).Fill(null);
|
|
|
|
|
_rtHostColors[index] = _rtColors[index]?.HostTexture;
|
2022-01-31 04:11:43 +01:00
|
|
|
|
_rtHostDs = null;
|
2022-01-11 20:15:17 +01:00
|
|
|
|
|
|
|
|
|
_context.Renderer.Pipeline.SetRenderTargets(_rtHostColors, null);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Update host framebuffer attachments based on currently bound render target buffers.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <remarks>
|
|
|
|
|
/// All color attachments will be unbound.
|
|
|
|
|
/// </remarks>
|
|
|
|
|
public void UpdateRenderTargetDepthStencil()
|
|
|
|
|
{
|
|
|
|
|
new Span<ITexture>(_rtHostColors).Fill(null);
|
|
|
|
|
_rtHostDs = _rtDepthStencil?.HostTexture;
|
|
|
|
|
|
|
|
|
|
_context.Renderer.Pipeline.SetRenderTargets(_rtHostColors, _rtHostDs);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2021-06-24 01:51:41 +02:00
|
|
|
|
/// Forces all textures, samplers, images and render targets to be rebound the next time
|
|
|
|
|
/// CommitGraphicsBindings is called.
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// </summary>
|
2021-06-24 01:51:41 +02:00
|
|
|
|
public void Rebind()
|
2019-10-13 08:02:07 +02:00
|
|
|
|
{
|
2021-06-24 01:51:41 +02:00
|
|
|
|
_gpBindingsManager.Rebind();
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
2021-06-24 01:51:41 +02:00
|
|
|
|
for (int index = 0; index < _rtHostColors.Length; index++)
|
2020-10-29 22:57:34 +01:00
|
|
|
|
{
|
2021-06-24 01:51:41 +02:00
|
|
|
|
_rtHostColors[index] = null;
|
2020-10-29 22:57:34 +01:00
|
|
|
|
}
|
|
|
|
|
|
2021-06-24 01:51:41 +02:00
|
|
|
|
_rtHostDs = null;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
|
/// <summary>
|
2021-06-24 01:51:41 +02:00
|
|
|
|
/// Disposes the texture manager.
|
2019-12-31 23:09:49 +01:00
|
|
|
|
/// It's an error to use the texture manager after disposal.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
2021-06-24 01:51:41 +02:00
|
|
|
|
_cpBindingsManager.Dispose();
|
|
|
|
|
_gpBindingsManager.Dispose();
|
2021-06-09 01:00:28 +02:00
|
|
|
|
|
2021-06-24 01:51:41 +02:00
|
|
|
|
for (int i = 0; i < _rtColors.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
_rtColors[i]?.DecrementReferenceCount();
|
|
|
|
|
_rtColors[i] = null;
|
2019-12-31 23:09:49 +01:00
|
|
|
|
}
|
2021-06-24 01:51:41 +02:00
|
|
|
|
|
|
|
|
|
_rtDepthStencil?.DecrementReferenceCount();
|
|
|
|
|
_rtDepthStencil = null;
|
2019-12-31 23:09:49 +01:00
|
|
|
|
}
|
2019-10-13 08:02:07 +02:00
|
|
|
|
}
|
2021-05-19 20:05:43 +02:00
|
|
|
|
}
|