From cee712105850ac3385cd0091a923438167433f9f Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Sat, 8 Apr 2023 01:22:00 +0200 Subject: Move solution and projects to src --- src/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs (limited to 'src/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs') diff --git a/src/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs b/src/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs new file mode 100644 index 00000000..b937f577 --- /dev/null +++ b/src/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs @@ -0,0 +1,16 @@ +namespace Ryujinx.Graphics.Gpu.Image +{ + /// + /// 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. + /// + enum TextureScaleMode + { + Eligible = 0, + Scaled = 1, + Blacklisted = 2, + Undesired = 3 + } +} -- cgit v1.2.3