2020-09-10 21:44:04 +02:00
|
|
|
using Ryujinx.Common.Logging;
|
2019-10-13 08:02:07 +02:00
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
namespace Ryujinx.Graphics.Gpu.Image
|
|
|
|
{
|
2019-12-30 00:26:37 +01:00
|
|
|
/// <summary>
|
|
|
|
/// A texture cache that automatically removes older textures that are not used for some time.
|
|
|
|
/// The cache works with a rotated list with a fixed size. When new textures are added, the
|
|
|
|
/// old ones at the bottom of the list are deleted.
|
|
|
|
/// </summary>
|
2019-10-13 08:02:07 +02:00
|
|
|
class AutoDeleteCache : IEnumerable<Texture>
|
|
|
|
{
|
|
|
|
private const int MaxCapacity = 2048;
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
private readonly LinkedList<Texture> _textures;
|
2019-10-13 08:02:07 +02:00
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Creates a new instance of the automatic deletion cache.
|
|
|
|
/// </summary>
|
2019-10-13 08:02:07 +02:00
|
|
|
public AutoDeleteCache()
|
|
|
|
{
|
|
|
|
_textures = new LinkedList<Texture>();
|
|
|
|
}
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Adds a new texture to the cache, even if the texture added is already on the cache.
|
2020-01-01 16:39:09 +01:00
|
|
|
/// </summary>
|
|
|
|
/// <remarks>
|
2019-12-30 00:26:37 +01:00
|
|
|
/// Using this method is only recommended if you know that the texture is not yet on the cache,
|
|
|
|
/// otherwise it would store the same texture more than once.
|
2020-01-01 16:39:09 +01:00
|
|
|
/// </remarks>
|
2019-12-30 00:26:37 +01:00
|
|
|
/// <param name="texture">The texture to be added to the cache</param>
|
2019-10-13 08:02:07 +02:00
|
|
|
public void Add(Texture texture)
|
|
|
|
{
|
|
|
|
texture.IncrementReferenceCount();
|
|
|
|
|
|
|
|
texture.CacheNode = _textures.AddLast(texture);
|
|
|
|
|
|
|
|
if (_textures.Count > MaxCapacity)
|
|
|
|
{
|
|
|
|
Texture oldestTexture = _textures.First.Value;
|
|
|
|
|
2022-01-09 17:28:48 +01:00
|
|
|
if (!oldestTexture.CheckModified(false))
|
2020-09-10 21:44:04 +02:00
|
|
|
{
|
|
|
|
// The texture must be flushed if it falls out of the auto delete cache.
|
|
|
|
// Flushes out of the auto delete cache do not trigger write tracking,
|
|
|
|
// as it is expected that other overlapping textures exist that have more up-to-date contents.
|
2021-09-29 02:11:05 +02:00
|
|
|
|
|
|
|
oldestTexture.Group.SynchronizeDependents(oldestTexture);
|
2022-01-09 17:28:48 +01:00
|
|
|
oldestTexture.FlushModified(false);
|
2020-09-10 21:44:04 +02:00
|
|
|
}
|
|
|
|
|
2019-10-13 08:02:07 +02:00
|
|
|
_textures.RemoveFirst();
|
|
|
|
|
|
|
|
oldestTexture.DecrementReferenceCount();
|
|
|
|
|
|
|
|
oldestTexture.CacheNode = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-30 00:26:37 +01:00
|
|
|
/// <summary>
|
|
|
|
/// Adds a new texture to the cache, or just moves it to the top of the list if the
|
2020-01-01 16:39:09 +01:00
|
|
|
/// texture is already on the cache.
|
2019-12-30 00:26:37 +01:00
|
|
|
/// </summary>
|
2020-01-01 16:39:09 +01:00
|
|
|
/// <remarks>
|
|
|
|
/// Moving the texture to the top of the list prevents it from being deleted,
|
|
|
|
/// as the textures on the bottom of the list are deleted when new ones are added.
|
|
|
|
/// </remarks>
|
2019-12-30 00:26:37 +01:00
|
|
|
/// <param name="texture">The texture to be added, or moved to the top</param>
|
2019-10-13 08:02:07 +02:00
|
|
|
public void Lift(Texture texture)
|
|
|
|
{
|
|
|
|
if (texture.CacheNode != null)
|
|
|
|
{
|
|
|
|
if (texture.CacheNode != _textures.Last)
|
|
|
|
{
|
|
|
|
_textures.Remove(texture.CacheNode);
|
|
|
|
|
|
|
|
texture.CacheNode = _textures.AddLast(texture);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
Add(texture);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-10 21:44:04 +02:00
|
|
|
public bool Remove(Texture texture, bool flush)
|
|
|
|
{
|
|
|
|
if (texture.CacheNode == null)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove our reference to this texture.
|
2022-01-09 17:28:48 +01:00
|
|
|
if (flush)
|
2020-09-10 21:44:04 +02:00
|
|
|
{
|
2022-01-09 17:28:48 +01:00
|
|
|
texture.FlushModified(false);
|
2020-09-10 21:44:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
_textures.Remove(texture.CacheNode);
|
|
|
|
|
|
|
|
texture.CacheNode = null;
|
|
|
|
|
|
|
|
return texture.DecrementReferenceCount();
|
|
|
|
}
|
|
|
|
|
2019-10-13 08:02:07 +02:00
|
|
|
public IEnumerator<Texture> GetEnumerator()
|
|
|
|
{
|
|
|
|
return _textures.GetEnumerator();
|
|
|
|
}
|
|
|
|
|
|
|
|
IEnumerator IEnumerable.GetEnumerator()
|
|
|
|
{
|
|
|
|
return _textures.GetEnumerator();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|