Prefer truly perfect texture matches over fomat aliased ones (#1754)

This commit is contained in:
riperiperi 2020-11-27 18:46:23 +00:00 committed by GitHub
parent 24f6d01983
commit 9f74f8aac4
5 changed files with 60 additions and 34 deletions

View file

@ -0,0 +1,9 @@
namespace Ryujinx.Graphics.Gpu.Image
{
enum TextureMatchQuality
{
NoMatch,
FormatAlias,
Perfect
}
}