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.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs b/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs
new file mode 100644
index 00000000..2c9e431d
--- /dev/null
+++ b/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs
@@ -0,0 +1,14 @@
+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.
+ /// </summary>
+ enum TextureScaleMode
+ {
+ Eligible = 0,
+ Scaled = 1,
+ Blacklisted = 2
+ }
+}