diff options
| author | riperiperi <rhy3756547@hotmail.com> | 2020-11-27 18:46:23 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-27 19:46:23 +0100 |
| commit | 0108004691a582f7df8e629c1e68a6bb0e0b90e7 (patch) | |
| tree | bb3090e6670c22cd2eee144c7060f9dd3b252f2b /Ryujinx.Graphics.Gpu/Image/TextureMatchQuality.cs | |
| parent | 88633f4bc2987c3118c4d0f482870b7871b47e81 (diff) | |
Prefer truly perfect texture matches over fomat aliased ones (#1754)
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Image/TextureMatchQuality.cs')
| -rw-r--r-- | Ryujinx.Graphics.Gpu/Image/TextureMatchQuality.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureMatchQuality.cs b/Ryujinx.Graphics.Gpu/Image/TextureMatchQuality.cs new file mode 100644 index 00000000..1351bf24 --- /dev/null +++ b/Ryujinx.Graphics.Gpu/Image/TextureMatchQuality.cs @@ -0,0 +1,9 @@ +namespace Ryujinx.Graphics.Gpu.Image +{ + enum TextureMatchQuality + { + NoMatch, + FormatAlias, + Perfect + } +} |
