blob: 2c9e431dc8a0ba4746cf4ed38e5e9990feb4dc74 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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
}
}
|