2019-12-29 18:41:50 +01:00
|
|
|
using Ryujinx.Common.Logging;
|
2019-10-13 08:02:07 +02:00
|
|
|
using Ryujinx.Graphics.GAL;
|
2021-01-15 19:14:00 +01:00
|
|
|
using Ryujinx.Graphics.Texture;
|
|
|
|
using System;
|
2021-03-06 15:43:55 +01:00
|
|
|
using System.Collections.Concurrent;
|
2019-10-13 08:02:07 +02:00
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Image
|
|
|
|
{
|
2019-12-30 00:26:37 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Texture pool.
|
|
|
|
/// </summary>
|
2021-01-29 04:19:06 +01:00
|
|
|
class TexturePool : Pool<Texture, TextureDescriptor>
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
2019-11-23 06:17:22 +01:00
|
|
|
private int _sequenceNumber;
|
2021-03-06 15:43:55 +01:00
|
|
|
private readonly ConcurrentQueue<Texture> _dereferenceQueue = new ConcurrentQueue<Texture>();
|
2019-10-13 08:02:07 +02:00
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Intrusive linked list node used on the texture pool cache.
|
|
|
|
/// </summary>
|
|
|
|
public LinkedListNode<TexturePool> CacheNode { get; set; }
|
2019-10-13 08:02:07 +02:00
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Constructs a new instance of the texture pool.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="context">GPU context that the texture pool belongs to</param>
|
|
|
|
/// <param name="address">Address of the texture pool in guest memory</param>
|
|
|
|
/// <param name="maximumId">Maximum texture ID of the texture pool (equal to maximum textures minus one)</param>
|
|
|
|
public TexturePool(GpuContext context, ulong address, int maximumId) : base(context, address, maximumId) { }
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets the texture with the given ID.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="id">ID of the texture. This is effectively a zero-based index</param>
|
|
|
|
/// <returns>The texture with the given ID</returns>
|
2019-10-13 08:02:07 +02:00
|
|
|
public override Texture Get(int id)
|
|
|
|
{
|
|
|
|
if ((uint)id >= Items.Length)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2019-11-23 06:17:22 +01:00
|
|
|
if (_sequenceNumber != Context.SequenceNumber)
|
|
|
|
{
|
|
|
|
_sequenceNumber = Context.SequenceNumber;
|
|
|
|
|
|
|
|
SynchronizeMemory();
|
|
|
|
}
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
Texture texture = Items[id];
|
|
|
|
|
|
|
|
if (texture == null)
|
|
|
|
{
|
2019-12-16 05:59:46 +01:00
|
|
|
TextureDescriptor descriptor = GetDescriptor(id);
|
2019-10-13 08:02:07 +02:00
|
|
|
|
2021-01-15 19:14:00 +01:00
|
|
|
TextureInfo info = GetInfo(descriptor, out int layerSize);
|
2019-10-13 08:02:07 +02:00
|
|
|
|
2021-03-06 15:43:55 +01:00
|
|
|
ProcessDereferenceQueue();
|
|
|
|
|
2021-01-17 19:44:34 +01:00
|
|
|
texture = Context.Methods.TextureManager.FindOrCreateTexture(TextureSearchFlags.ForSampler, info, layerSize);
|
|
|
|
|
|
|
|
// If this happens, then the texture address is invalid, we can't add it to the cache.
|
|
|
|
if (texture == null)
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2021-03-06 15:43:55 +01:00
|
|
|
texture.IncrementReferenceCount(this, id);
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
Items[id] = texture;
|
2021-01-29 04:19:06 +01:00
|
|
|
|
|
|
|
DescriptorCache[id] = descriptor;
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-11-10 01:41:13 +01:00
|
|
|
if (texture.ChangedSize)
|
|
|
|
{
|
|
|
|
// Texture changed size at one point - it may be a different size than the sampler expects.
|
|
|
|
// This can be triggered when the size is changed by a size hint on copy or draw, but the texture has been sampled before.
|
|
|
|
|
|
|
|
TextureDescriptor descriptor = GetDescriptor(id);
|
|
|
|
|
|
|
|
int width = descriptor.UnpackWidth();
|
|
|
|
int height = descriptor.UnpackHeight();
|
|
|
|
|
|
|
|
if (texture.Info.Width != width || texture.Info.Height != height)
|
|
|
|
{
|
|
|
|
texture.ChangeSize(width, height, texture.Info.DepthOrLayers);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-13 08:02:07 +02:00
|
|
|
// Memory is automatically synchronized on texture creation.
|
|
|
|
texture.SynchronizeMemory();
|
|
|
|
}
|
|
|
|
|
|
|
|
return texture;
|
|
|
|
}
|
|
|
|
|
2021-03-06 15:43:55 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Forcibly remove a texture from this pool's items.
|
|
|
|
/// If deferred, the dereference will be queued to occur on the render thread.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="texture">The texture being removed</param>
|
|
|
|
/// <param name="id">The ID of the texture in this pool</param>
|
|
|
|
/// <param name="deferred">If true, queue the dereference to happen on the render thread, otherwise dereference immediately</param>
|
|
|
|
public void ForceRemove(Texture texture, int id, bool deferred)
|
|
|
|
{
|
|
|
|
Items[id] = null;
|
|
|
|
|
|
|
|
if (deferred)
|
|
|
|
{
|
|
|
|
_dereferenceQueue.Enqueue(texture);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
texture.DecrementReferenceCount();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Process the dereference queue, decrementing the reference count for each texture in it.
|
|
|
|
/// This is used to ensure that texture disposal happens on the render thread.
|
|
|
|
/// </summary>
|
|
|
|
private void ProcessDereferenceQueue()
|
|
|
|
{
|
|
|
|
while (_dereferenceQueue.TryDequeue(out Texture toRemove))
|
|
|
|
{
|
|
|
|
toRemove.DecrementReferenceCount();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Implementation of the texture pool range invalidation.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="address">Start address of the range of the texture pool</param>
|
|
|
|
/// <param name="size">Size of the range being invalidated</param>
|
2019-10-13 08:02:07 +02:00
|
|
|
protected override void InvalidateRangeImpl(ulong address, ulong size)
|
|
|
|
{
|
2021-03-06 15:43:55 +01:00
|
|
|
ProcessDereferenceQueue();
|
|
|
|
|
2019-10-13 08:02:07 +02:00
|
|
|
ulong endAddress = address + size;
|
|
|
|
|
|
|
|
for (; address < endAddress; address += DescriptorSize)
|
|
|
|
{
|
|
|
|
int id = (int)((address - Address) / DescriptorSize);
|
|
|
|
|
|
|
|
Texture texture = Items[id];
|
|
|
|
|
|
|
|
if (texture != null)
|
|
|
|
{
|
2020-05-27 16:07:10 +02:00
|
|
|
TextureDescriptor descriptor = Context.PhysicalMemory.Read<TextureDescriptor>(address);
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
// If the descriptors are the same, the texture is the same,
|
|
|
|
// we don't need to remove as it was not modified. Just continue.
|
2021-01-29 04:19:06 +01:00
|
|
|
if (descriptor.Equals(ref DescriptorCache[id]))
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2021-03-06 15:43:55 +01:00
|
|
|
texture.DecrementReferenceCount(this, id);
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
Items[id] = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Gets texture information from a texture descriptor.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="descriptor">The texture descriptor</param>
|
2021-01-15 19:14:00 +01:00
|
|
|
/// <param name="layerSize">Layer size for textures using a sub-range of mipmap levels, otherwise 0</param>
|
2019-12-30 00:26:37 +01:00
|
|
|
/// <returns>The texture information</returns>
|
2021-01-15 19:14:00 +01:00
|
|
|
private TextureInfo GetInfo(TextureDescriptor descriptor, out int layerSize)
|
2019-10-13 08:02:07 +02:00
|
|
|
{
|
|
|
|
int depthOrLayers = descriptor.UnpackDepth();
|
|
|
|
int levels = descriptor.UnpackLevels();
|
|
|
|
|
|
|
|
TextureMsaaMode msaaMode = descriptor.UnpackTextureMsaaMode();
|
|
|
|
|
|
|
|
int samplesInX = msaaMode.SamplesInX();
|
|
|
|
int samplesInY = msaaMode.SamplesInY();
|
|
|
|
|
|
|
|
int stride = descriptor.UnpackStride();
|
|
|
|
|
|
|
|
TextureDescriptorType descriptorType = descriptor.UnpackTextureDescriptorType();
|
|
|
|
|
|
|
|
bool isLinear = descriptorType == TextureDescriptorType.Linear;
|
|
|
|
|
|
|
|
Target target = descriptor.UnpackTextureTarget().Convert((samplesInX | samplesInY) != 1);
|
|
|
|
|
2021-03-08 22:43:39 +01:00
|
|
|
int width = target == Target.TextureBuffer ? descriptor.UnpackBufferTextureWidth() : descriptor.UnpackWidth();
|
|
|
|
int height = descriptor.UnpackHeight();
|
|
|
|
|
2020-09-29 22:28:50 +02:00
|
|
|
// We use 2D targets for 1D textures as that makes texture cache
|
|
|
|
// management easier. We don't know the target for render target
|
|
|
|
// and copies, so those would normally use 2D targets, which are
|
|
|
|
// not compatible with 1D targets. By doing that we also allow those
|
|
|
|
// to match when looking for compatible textures on the cache.
|
|
|
|
if (target == Target.Texture1D)
|
|
|
|
{
|
|
|
|
target = Target.Texture2D;
|
|
|
|
height = 1;
|
|
|
|
}
|
|
|
|
else if (target == Target.Texture1DArray)
|
|
|
|
{
|
|
|
|
target = Target.Texture2DArray;
|
|
|
|
height = 1;
|
|
|
|
}
|
|
|
|
|
2019-10-13 08:02:07 +02:00
|
|
|
uint format = descriptor.UnpackFormat();
|
|
|
|
bool srgb = descriptor.UnpackSrgb();
|
|
|
|
|
2021-01-17 19:44:34 +01:00
|
|
|
ulong gpuVa = descriptor.UnpackAddress();
|
|
|
|
|
2019-10-13 08:02:07 +02:00
|
|
|
if (!FormatTable.TryGetTextureFormat(format, srgb, out FormatInfo formatInfo))
|
|
|
|
{
|
2021-01-17 19:44:34 +01:00
|
|
|
if (Context.MemoryManager.IsMapped(gpuVa) && (int)format > 0)
|
2020-06-16 20:28:02 +02:00
|
|
|
{
|
2020-08-04 01:32:53 +02:00
|
|
|
Logger.Error?.Print(LogClass.Gpu, $"Invalid texture format 0x{format:X} (sRGB: {srgb}).");
|
2020-06-16 20:28:02 +02:00
|
|
|
}
|
2019-10-13 08:02:07 +02:00
|
|
|
|
|
|
|
formatInfo = FormatInfo.Default;
|
|
|
|
}
|
|
|
|
|
|
|
|
int gobBlocksInY = descriptor.UnpackGobBlocksInY();
|
|
|
|
int gobBlocksInZ = descriptor.UnpackGobBlocksInZ();
|
|
|
|
|
|
|
|
int gobBlocksInTileX = descriptor.UnpackGobBlocksInTileX();
|
|
|
|
|
2021-01-15 19:14:00 +01:00
|
|
|
layerSize = 0;
|
|
|
|
|
|
|
|
int minLod = descriptor.UnpackBaseLevel();
|
|
|
|
int maxLod = descriptor.UnpackMaxLevelInclusive();
|
|
|
|
|
|
|
|
// Linear textures don't support mipmaps, so we don't handle this case here.
|
2021-01-17 19:44:34 +01:00
|
|
|
if ((minLod != 0 || maxLod + 1 != levels) && target != Target.TextureBuffer && !isLinear)
|
2021-01-15 19:14:00 +01:00
|
|
|
{
|
|
|
|
int depth = TextureInfo.GetDepth(target, depthOrLayers);
|
|
|
|
int layers = TextureInfo.GetLayers(target, depthOrLayers);
|
|
|
|
|
|
|
|
SizeInfo sizeInfo = SizeCalculator.GetBlockLinearTextureSize(
|
|
|
|
width,
|
|
|
|
height,
|
|
|
|
depth,
|
|
|
|
levels,
|
|
|
|
layers,
|
|
|
|
formatInfo.BlockWidth,
|
|
|
|
formatInfo.BlockHeight,
|
|
|
|
formatInfo.BytesPerPixel,
|
|
|
|
gobBlocksInY,
|
|
|
|
gobBlocksInZ,
|
|
|
|
gobBlocksInTileX);
|
|
|
|
|
|
|
|
layerSize = sizeInfo.LayerSize;
|
|
|
|
|
2021-01-19 04:04:38 +01:00
|
|
|
if (minLod != 0 && minLod < levels)
|
2021-01-15 19:14:00 +01:00
|
|
|
{
|
|
|
|
// If the base level is not zero, we additionally add the mip level offset
|
|
|
|
// to the address, this allows the texture manager to find the base level from the
|
|
|
|
// address if there is a overlapping texture on the cache that can contain the new texture.
|
2021-01-17 19:44:34 +01:00
|
|
|
gpuVa += (ulong)sizeInfo.GetMipOffset(minLod);
|
2021-01-15 19:14:00 +01:00
|
|
|
|
|
|
|
width = Math.Max(1, width >> minLod);
|
|
|
|
height = Math.Max(1, height >> minLod);
|
|
|
|
|
|
|
|
if (target == Target.Texture3D)
|
|
|
|
{
|
|
|
|
depthOrLayers = Math.Max(1, depthOrLayers >> minLod);
|
|
|
|
}
|
|
|
|
|
|
|
|
(gobBlocksInY, gobBlocksInZ) = SizeCalculator.GetMipGobBlockSizes(height, depth, formatInfo.BlockHeight, gobBlocksInY, gobBlocksInZ);
|
|
|
|
}
|
|
|
|
|
|
|
|
levels = (maxLod - minLod) + 1;
|
|
|
|
}
|
|
|
|
|
2019-10-13 08:02:07 +02:00
|
|
|
SwizzleComponent swizzleR = descriptor.UnpackSwizzleR().Convert();
|
|
|
|
SwizzleComponent swizzleG = descriptor.UnpackSwizzleG().Convert();
|
|
|
|
SwizzleComponent swizzleB = descriptor.UnpackSwizzleB().Convert();
|
|
|
|
SwizzleComponent swizzleA = descriptor.UnpackSwizzleA().Convert();
|
|
|
|
|
|
|
|
DepthStencilMode depthStencilMode = GetDepthStencilMode(
|
|
|
|
formatInfo.Format,
|
|
|
|
swizzleR,
|
|
|
|
swizzleG,
|
|
|
|
swizzleB,
|
|
|
|
swizzleA);
|
|
|
|
|
2020-07-07 04:41:07 +02:00
|
|
|
if (formatInfo.Format.IsDepthOrStencil())
|
2020-05-03 23:18:00 +02:00
|
|
|
{
|
|
|
|
swizzleR = SwizzleComponent.Red;
|
|
|
|
swizzleG = SwizzleComponent.Red;
|
|
|
|
swizzleB = SwizzleComponent.Red;
|
|
|
|
|
|
|
|
if (depthStencilMode == DepthStencilMode.Depth)
|
|
|
|
{
|
|
|
|
swizzleA = SwizzleComponent.One;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
swizzleA = SwizzleComponent.Red;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-13 08:02:07 +02:00
|
|
|
return new TextureInfo(
|
2021-01-17 19:44:34 +01:00
|
|
|
gpuVa,
|
2019-10-13 08:02:07 +02:00
|
|
|
width,
|
|
|
|
height,
|
|
|
|
depthOrLayers,
|
|
|
|
levels,
|
|
|
|
samplesInX,
|
|
|
|
samplesInY,
|
|
|
|
stride,
|
|
|
|
isLinear,
|
|
|
|
gobBlocksInY,
|
|
|
|
gobBlocksInZ,
|
|
|
|
gobBlocksInTileX,
|
|
|
|
target,
|
|
|
|
formatInfo,
|
|
|
|
depthStencilMode,
|
|
|
|
swizzleR,
|
|
|
|
swizzleG,
|
|
|
|
swizzleB,
|
|
|
|
swizzleA);
|
|
|
|
}
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Gets the texture depth-stencil mode, based on the swizzle components of each color channel.
|
|
|
|
/// The depth-stencil mode is determined based on how the driver sets those parameters.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="format">The format of the texture</param>
|
|
|
|
/// <param name="components">The texture swizzle components</param>
|
|
|
|
/// <returns>The depth-stencil mode</returns>
|
2019-10-13 08:02:07 +02:00
|
|
|
private static DepthStencilMode GetDepthStencilMode(Format format, params SwizzleComponent[] components)
|
|
|
|
{
|
|
|
|
// R = Depth, G = Stencil.
|
|
|
|
// On 24-bits depth formats, this is inverted (Stencil is R etc).
|
|
|
|
// NVN setup:
|
|
|
|
// For depth, A is set to 1.0f, the other components are set to Depth.
|
|
|
|
// For stencil, all components are set to Stencil.
|
|
|
|
SwizzleComponent component = components[0];
|
|
|
|
|
|
|
|
for (int index = 1; index < 4 && !IsRG(component); index++)
|
|
|
|
{
|
|
|
|
component = components[index];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!IsRG(component))
|
|
|
|
{
|
|
|
|
return DepthStencilMode.Depth;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (format == Format.D24X8Unorm || format == Format.D24UnormS8Uint)
|
|
|
|
{
|
|
|
|
return component == SwizzleComponent.Red
|
|
|
|
? DepthStencilMode.Stencil
|
|
|
|
: DepthStencilMode.Depth;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return component == SwizzleComponent.Red
|
|
|
|
? DepthStencilMode.Depth
|
|
|
|
: DepthStencilMode.Stencil;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Checks if the swizzle component is equal to the red or green channels.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="component">The swizzle component to check</param>
|
2019-12-30 18:44:22 +01:00
|
|
|
/// <returns>True if the swizzle component is equal to the red or green, false otherwise</returns>
|
2019-10-13 08:02:07 +02:00
|
|
|
private static bool IsRG(SwizzleComponent component)
|
|
|
|
{
|
|
|
|
return component == SwizzleComponent.Red ||
|
|
|
|
component == SwizzleComponent.Green;
|
|
|
|
}
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Decrements the reference count of the texture.
|
|
|
|
/// This indicates that the texture pool is not using it anymore.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="item">The texture to be deleted</param>
|
2019-10-13 08:02:07 +02:00
|
|
|
protected override void Delete(Texture item)
|
|
|
|
{
|
2021-03-06 15:43:55 +01:00
|
|
|
item?.DecrementReferenceCount(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void Dispose()
|
|
|
|
{
|
|
|
|
ProcessDereferenceQueue();
|
|
|
|
|
|
|
|
base.Dispose();
|
2019-10-13 08:02:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|