aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Shader/TextureFormat.cs
blob: 619598c7fa59a7e537548964c0675f030347a729 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
using Ryujinx.Graphics.Shader.Translation;

namespace Ryujinx.Graphics.Shader
{
    public enum TextureFormat
    {
        Unknown,
        R8Unorm,
        R8Snorm,
        R8Uint,
        R8Sint,
        R16Float,
        R16Unorm,
        R16Snorm,
        R16Uint,
        R16Sint,
        R32Float,
        R32Uint,
        R32Sint,
        R8G8Unorm,
        R8G8Snorm,
        R8G8Uint,
        R8G8Sint,
        R16G16Float,
        R16G16Unorm,
        R16G16Snorm,
        R16G16Uint,
        R16G16Sint,
        R32G32Float,
        R32G32Uint,
        R32G32Sint,
        R8G8B8A8Unorm,
        R8G8B8A8Snorm,
        R8G8B8A8Uint,
        R8G8B8A8Sint,
        R16G16B16A16Float,
        R16G16B16A16Unorm,
        R16G16B16A16Snorm,
        R16G16B16A16Uint,
        R16G16B16A16Sint,
        R32G32B32A32Float,
        R32G32B32A32Uint,
        R32G32B32A32Sint,
        R10G10B10A2Unorm,
        R10G10B10A2Uint,
        R11G11B10Float,
    }

    static class TextureFormatExtensions
    {
        public static string ToGlslFormat(this TextureFormat format)
        {
            return format switch
            {
#pragma warning disable IDE0055 // Disable formatting
                TextureFormat.R8Unorm           => "r8",
                TextureFormat.R8Snorm           => "r8_snorm",
                TextureFormat.R8Uint            => "r8ui",
                TextureFormat.R8Sint            => "r8i",
                TextureFormat.R16Float          => "r16f",
                TextureFormat.R16Unorm          => "r16",
                TextureFormat.R16Snorm          => "r16_snorm",
                TextureFormat.R16Uint           => "r16ui",
                TextureFormat.R16Sint           => "r16i",
                TextureFormat.R32Float          => "r32f",
                TextureFormat.R32Uint           => "r32ui",
                TextureFormat.R32Sint           => "r32i",
                TextureFormat.R8G8Unorm         => "rg8",
                TextureFormat.R8G8Snorm         => "rg8_snorm",
                TextureFormat.R8G8Uint          => "rg8ui",
                TextureFormat.R8G8Sint          => "rg8i",
                TextureFormat.R16G16Float       => "rg16f",
                TextureFormat.R16G16Unorm       => "rg16",
                TextureFormat.R16G16Snorm       => "rg16_snorm",
                TextureFormat.R16G16Uint        => "rg16ui",
                TextureFormat.R16G16Sint        => "rg16i",
                TextureFormat.R32G32Float       => "rg32f",
                TextureFormat.R32G32Uint        => "rg32ui",
                TextureFormat.R32G32Sint        => "rg32i",
                TextureFormat.R8G8B8A8Unorm     => "rgba8",
                TextureFormat.R8G8B8A8Snorm     => "rgba8_snorm",
                TextureFormat.R8G8B8A8Uint      => "rgba8ui",
                TextureFormat.R8G8B8A8Sint      => "rgba8i",
                TextureFormat.R16G16B16A16Float => "rgba16f",
                TextureFormat.R16G16B16A16Unorm => "rgba16",
                TextureFormat.R16G16B16A16Snorm => "rgba16_snorm",
                TextureFormat.R16G16B16A16Uint  => "rgba16ui",
                TextureFormat.R16G16B16A16Sint  => "rgba16i",
                TextureFormat.R32G32B32A32Float => "rgba32f",
                TextureFormat.R32G32B32A32Uint  => "rgba32ui",
                TextureFormat.R32G32B32A32Sint  => "rgba32i",
                TextureFormat.R10G10B10A2Unorm  => "rgb10_a2",
                TextureFormat.R10G10B10A2Uint   => "rgb10_a2ui",
                TextureFormat.R11G11B10Float    => "r11f_g11f_b10f",
                _                               => string.Empty,
#pragma warning restore IDE0055
            };
        }

        public static AggregateType GetComponentType(this TextureFormat format)
        {
            switch (format)
            {
                case TextureFormat.R8Uint:
                case TextureFormat.R16Uint:
                case TextureFormat.R32Uint:
                case TextureFormat.R8G8Uint:
                case TextureFormat.R16G16Uint:
                case TextureFormat.R32G32Uint:
                case TextureFormat.R8G8B8A8Uint:
                case TextureFormat.R16G16B16A16Uint:
                case TextureFormat.R32G32B32A32Uint:
                case TextureFormat.R10G10B10A2Uint:
                    return AggregateType.U32;
                case TextureFormat.R8Sint:
                case TextureFormat.R16Sint:
                case TextureFormat.R32Sint:
                case TextureFormat.R8G8Sint:
                case TextureFormat.R16G16Sint:
                case TextureFormat.R32G32Sint:
                case TextureFormat.R8G8B8A8Sint:
                case TextureFormat.R16G16B16A16Sint:
                case TextureFormat.R32G32B32A32Sint:
                    return AggregateType.S32;
            }

            return AggregateType.FP32;
        }
    }
}