From bdfbcf4017c97d16531bfde70613a0aaa3759f52 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Tue, 1 Sep 2020 03:58:40 -0300 Subject: Fix regression on texture compatibility match checks (#1521) --- Ryujinx.Graphics.Gpu/Image/TextureCompatibility.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Ryujinx.Graphics.Gpu/Image/TextureCompatibility.cs') diff --git a/Ryujinx.Graphics.Gpu/Image/TextureCompatibility.cs b/Ryujinx.Graphics.Gpu/Image/TextureCompatibility.cs index b64a85a5..cc7b0dc2 100644 --- a/Ryujinx.Graphics.Gpu/Image/TextureCompatibility.cs +++ b/Ryujinx.Graphics.Gpu/Image/TextureCompatibility.cs @@ -203,7 +203,7 @@ namespace Ryujinx.Graphics.Gpu.Image /// Texture information to compare with /// True to align the sizes according to the texture layout for comparison /// True if the sizes matches, false otherwise - private static bool SizeMatches(TextureInfo lhs, TextureInfo rhs, bool alignSizes) + public static bool SizeMatches(TextureInfo lhs, TextureInfo rhs, bool alignSizes) { if (lhs.GetLayers() != rhs.GetLayers()) { -- cgit v1.2.3