mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-14 05:16:39 +00:00
Fix regression on texture compatibility match checks (#1521)
This commit is contained in:
parent
bc19114bb5
commit
bdfbcf4017
2 changed files with 2 additions and 2 deletions
|
@ -676,7 +676,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!TextureCompatibility.SizeMatches(Info, info))
|
if (!TextureCompatibility.SizeMatches(Info, info, (flags & TextureSearchFlags.Strict) == 0))
|
||||||
{
|
{
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
@ -203,7 +203,7 @@ namespace Ryujinx.Graphics.Gpu.Image
|
||||||
/// <param name="rhs">Texture information to compare with</param>
|
/// <param name="rhs">Texture information to compare with</param>
|
||||||
/// <param name="alignSizes">True to align the sizes according to the texture layout for comparison</param>
|
/// <param name="alignSizes">True to align the sizes according to the texture layout for comparison</param>
|
||||||
/// <returns>True if the sizes matches, false otherwise</returns>
|
/// <returns>True if the sizes matches, false otherwise</returns>
|
||||||
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())
|
if (lhs.GetLayers() != rhs.GetLayers())
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue