aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs
diff options
context:
space:
mode:
authorriperiperi <rhy3756547@hotmail.com>2021-08-11 21:44:51 +0100
committerGitHub <noreply@github.com>2021-08-11 22:44:51 +0200
commit0a80a837cb30402cad1f41293134edbaeeec6451 (patch)
treea743795873cdda800d729630e16989c1ebb01ad3 /Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs
parented754af8d5046d2fd7218c742521e38ab17cbcfe (diff)
Use "Undesired" scale mode for certain textures rather than blacklisting (#2537)
* Use "Undesired" scale mode for certain textures rather than blacklisting * Nit Co-authored-by: gdkchan <gab.dark.100@gmail.com> Co-authored-by: gdkchan <gab.dark.100@gmail.com>
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs')
-rw-r--r--Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs b/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs
index 2c9e431d..b937f577 100644
--- a/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs
+++ b/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs
@@ -4,11 +4,13 @@
/// The scale mode for a given texture.
/// Blacklisted textures cannot be scaled, Eligible textures have not been scaled yet,
/// and Scaled textures have been scaled already.
+ /// Undesired textures will stay at 1x until a situation where they must match a scaled texture.
/// </summary>
enum TextureScaleMode
{
Eligible = 0,
Scaled = 1,
- Blacklisted = 2
+ Blacklisted = 2,
+ Undesired = 3
}
}