* Ensure descriptor sets are only re-used when all command buffers using it have completed * Fix some SPIR-V capabilities * Set update after bind flag if we exceed limits * Simpler fix for Intel * Format whitespace * Make struct readonly * Add barriers for extra set arrays too
21 lines
761 B
C#
21 lines
761 B
C#
using Ryujinx.Graphics.GAL.Multithreading.Model;
|
|
using Ryujinx.Graphics.GAL.Multithreading.Resources;
|
|
|
|
namespace Ryujinx.Graphics.GAL.Multithreading.Commands.TextureArray
|
|
{
|
|
struct TextureArrayDisposeCommand : IGALCommand, IGALCommand<TextureArrayDisposeCommand>
|
|
{
|
|
public readonly CommandType CommandType => CommandType.TextureArrayDispose;
|
|
private TableRef<ThreadedTextureArray> _textureArray;
|
|
|
|
public void Set(TableRef<ThreadedTextureArray> textureArray)
|
|
{
|
|
_textureArray = textureArray;
|
|
}
|
|
|
|
public static void Run(ref TextureArrayDisposeCommand command, ThreadedRenderer threaded, IRenderer renderer)
|
|
{
|
|
command._textureArray.Get(threaded).Base.Dispose();
|
|
}
|
|
}
|
|
}
|