mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-25 05:12:21 -05:00
Move solution and projects to src
This commit is contained in:
16
src/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs
Normal file
16
src/Ryujinx.Graphics.Gpu/Image/TextureScaleMode.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user