diff options
author | gdkchan <gab.dark.100@gmail.com> | 2022-10-18 05:13:44 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-18 10:13:44 +0200 |
commit | a6cd044f0f675ee0bd9d3954228bbd3f2f992a22 (patch) | |
tree | 9baed95e70253b8471bc19b83f1ed88a958010c8 | |
parent | f5a1de6ac53e70a88c0aafefd7013c557d7671c0 (diff) |
Vulkan: Fix blit levels/layers parameters being inverted (#3768)1.1.309
-rw-r--r-- | Ryujinx.Graphics.Vulkan/TextureView.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Graphics.Vulkan/TextureView.cs b/Ryujinx.Graphics.Vulkan/TextureView.cs index 129a77ef..10d0ef05 100644 --- a/Ryujinx.Graphics.Vulkan/TextureView.cs +++ b/Ryujinx.Graphics.Vulkan/TextureView.cs @@ -515,10 +515,10 @@ namespace Ryujinx.Graphics.Vulkan dst.Info, srcRegion, dstRegion, - src.FirstLevel, - dst.FirstLevel, src.FirstLayer, dst.FirstLayer, + src.FirstLevel, + dst.FirstLevel, layers, levels, linearFilter, |