diff options
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Image/TextureCache.cs')
-rw-r--r-- | Ryujinx.Graphics.Gpu/Image/TextureCache.cs | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureCache.cs b/Ryujinx.Graphics.Gpu/Image/TextureCache.cs index 1d5b1851..27bec786 100644 --- a/Ryujinx.Graphics.Gpu/Image/TextureCache.cs +++ b/Ryujinx.Graphics.Gpu/Image/TextureCache.cs @@ -1080,19 +1080,6 @@ namespace Ryujinx.Graphics.Gpu.Image } /// <summary> - /// Queues the removal of a texture from the auto delete cache. - /// </summary> - /// <remarks> - /// This function is thread safe and can be called from any thread. - /// The texture will be deleted on the next time the cache is used. - /// </remarks> - /// <param name="texture">The texture to be removed</param> - public void QueueAutoDeleteCacheRemoval(Texture texture) - { - _cache.RemoveDeferred(texture); - } - - /// <summary> /// Adds a texture to the short duration cache. This typically keeps it alive for two ticks. /// </summary> /// <param name="texture">Texture to add to the short cache</param> |