diff options
author | gdkchan <gab.dark.100@gmail.com> | 2023-02-07 13:55:59 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-07 13:55:59 -0300 |
commit | f8beeeb7d3dca796d05a2ab1d7a8f1af3b7e3fb5 (patch) | |
tree | 7294400929602602eb7b2959e09d3ef12ad11228 /Ryujinx.Graphics.Vulkan/Window.cs | |
parent | cb250162cb47536120a963acdc2672d09e147edf (diff) |
Support safe blit on non-2D textures (#4374)1.1.603
* Support safe blit on non-2D textures (except multisample)
* Change safe blit with different levels and layers to match CmdBlitImage path
* Remove now unused variables
* Multisample safe blit support
Diffstat (limited to 'Ryujinx.Graphics.Vulkan/Window.cs')
-rw-r--r-- | Ryujinx.Graphics.Vulkan/Window.cs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Vulkan/Window.cs b/Ryujinx.Graphics.Vulkan/Window.cs index dc4dc6be..a90a824d 100644 --- a/Ryujinx.Graphics.Vulkan/Window.cs +++ b/Ryujinx.Graphics.Vulkan/Window.cs @@ -342,7 +342,9 @@ namespace Ryujinx.Graphics.Vulkan _swapchainImageViews[nextImage], _width, _height, + 1, _format, + false, new Extents2D(srcX0, srcY0, srcX1, srcY1), new Extents2D(dstX0, dstY1, dstX1, dstY0), true, |