diff options
author | gdkchan <gab.dark.100@gmail.com> | 2023-07-11 14:07:41 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-11 14:07:41 -0300 |
commit | 9c6071a645e72b56e42cf687f9c1a182be2673ac (patch) | |
tree | f5efb327ff38f69a7630745f39f06caef01211e6 /src/Ryujinx.Graphics.Vulkan/Window.cs | |
parent | fa32ef92755a51a2567a1bcbb35fb34886b5f979 (diff) |
Move support buffer update out of the backends (#5411)1.1.959
* Move support buffer update out of the backends
* Fix render scale init and remove redundant state from SupportBufferUpdater
* Stop passing texture scale to the backends
* XML docs for SupportBufferUpdater
Diffstat (limited to 'src/Ryujinx.Graphics.Vulkan/Window.cs')
-rw-r--r-- | src/Ryujinx.Graphics.Vulkan/Window.cs | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/src/Ryujinx.Graphics.Vulkan/Window.cs b/src/Ryujinx.Graphics.Vulkan/Window.cs index 0a41e98d..6027962c 100644 --- a/src/Ryujinx.Graphics.Vulkan/Window.cs +++ b/src/Ryujinx.Graphics.Vulkan/Window.cs @@ -294,12 +294,11 @@ namespace Ryujinx.Graphics.Vulkan } int srcX0, srcX1, srcY0, srcY1; - float scale = view.ScaleFactor; if (crop.Left == 0 && crop.Right == 0) { srcX0 = 0; - srcX1 = (int)(view.Width / scale); + srcX1 = view.Width; } else { @@ -310,7 +309,7 @@ namespace Ryujinx.Graphics.Vulkan if (crop.Top == 0 && crop.Bottom == 0) { srcY0 = 0; - srcY1 = (int)(view.Height / scale); + srcY1 = view.Height; } else { @@ -318,14 +317,6 @@ namespace Ryujinx.Graphics.Vulkan srcY1 = crop.Bottom; } - if (scale != 1f) - { - srcX0 = (int)(srcX0 * scale); - srcY0 = (int)(srcY0 * scale); - srcX1 = (int)Math.Ceiling(srcX1 * scale); - srcY1 = (int)Math.Ceiling(srcY1 * scale); - } - if (ScreenCaptureRequested) { if (_effect != null) |