aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs')
-rw-r--r--Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs b/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs
deleted file mode 100644
index b937f577..00000000
--- a/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-namespace Ryujinx.Graphics.Gpu.Image
-{
- /// <summary>
- /// 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,
- Undesired = 3
- }
-}