aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/GalTextureType.cs
blob: b02b8b37b4fb0ce32fc85bec0d63e2721cec1ef4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace Ryujinx.Graphics.Gal
{
    public enum GalTextureType
    {
        Snorm = 1,
        Unorm = 2,
        Sint = 3,
        Uint = 4,
        SnormForceFp16 = 5,
        UnormForceFp16 = 6,
        Float = 7
    }
}