From 0bce4a074a32099152ac65cb49b2a75051e3ba8b Mon Sep 17 00:00:00 2001 From: riperiperi Date: Tue, 12 Oct 2021 22:12:17 +0100 Subject: [PATCH] Don't force scaling on 2D copy sources (#2701) Some games (GameMaker Studio) build texture atlases out of sprites during initialization, using the 2D copy method. These copies are done from textures loaded into memory, not rendered, so they are not scaled to begin with. I had set srcTexture in these copies to force scaling, but really it only needs to scale if the texture already exists and was scaled by rendering or something else. I just set that to false, so it doesn't change if the texture is scaled or not. This will also avoid the destination being scaled if the source wasn't. The copy can handle mismatching scales just fine. This prevents scaling artifacts in GMS games, and maybe others (not Super Mario Maker 2, that has another issue). --- Ryujinx.Graphics.Gpu/Engine/Twod/TwodClass.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.Graphics.Gpu/Engine/Twod/TwodClass.cs b/Ryujinx.Graphics.Gpu/Engine/Twod/TwodClass.cs index 5077cb6a7..be7065563 100644 --- a/Ryujinx.Graphics.Gpu/Engine/Twod/TwodClass.cs +++ b/Ryujinx.Graphics.Gpu/Engine/Twod/TwodClass.cs @@ -119,7 +119,7 @@ namespace Ryujinx.Graphics.Gpu.Engine.Twod srcCopyTexture, offset, srcCopyTextureFormat, - true, + false, srcHint); if (srcTexture == null)