diff options
author | riperiperi <rhy3756547@hotmail.com> | 2022-10-08 15:28:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-08 11:28:27 -0300 |
commit | 1ca0517c99af1914b887d6197b816c84537a9145 (patch) | |
tree | ea0042b2bd1f178991142c8a7b0ad339488eb244 /Ryujinx.Graphics.Vulkan/StagingBuffer.cs | |
parent | 599d485bffc9080d1c54acce929bbda0c7077499 (diff) |
Vulkan: Fix some issues with CacheByRange (#3743)1.1.296
* Fix some issues with CacheByRange
- Cache now clears under more circumstances, the most important being the fast path write.
- Cache supports partial clear which should help when more buffers join.
- Fixed an issue with I8->I16 conversion where it wouldn't register the buffer for use on dispose.
Should hopefully fix issues with https://github.com/Ryujinx/Ryujinx-Games-List/issues/4010 and maybe others.
* Fix collection modified exception
* Fix accidental use of parameterless constructor
* Replay DynamicState when restoring from helper shader
Diffstat (limited to 'Ryujinx.Graphics.Vulkan/StagingBuffer.cs')
-rw-r--r-- | Ryujinx.Graphics.Vulkan/StagingBuffer.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Vulkan/StagingBuffer.cs b/Ryujinx.Graphics.Vulkan/StagingBuffer.cs index fe7a786b..df353453 100644 --- a/Ryujinx.Graphics.Vulkan/StagingBuffer.cs +++ b/Ryujinx.Graphics.Vulkan/StagingBuffer.cs @@ -87,7 +87,7 @@ namespace Ryujinx.Graphics.Vulkan private void PushDataImpl(CommandBufferScoped cbs, BufferHolder dst, int dstOffset, ReadOnlySpan<byte> data) { var srcBuffer = _buffer.GetBuffer(); - var dstBuffer = dst.GetBuffer(); + var dstBuffer = dst.GetBuffer(cbs.CommandBuffer, dstOffset, data.Length, true); int offset = _freeOffset; int capacity = BufferSize - offset; |