aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/Image/TextureMsaaMode.cs
blob: 0461888f11a84ec28e372007053730264fb36a01 (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
namespace Ryujinx.Graphics.Gpu.Image
{
    /// <summary>
    /// Multisampled texture samples count.
    /// </summary>
    enum TextureMsaaMode
    {
        Ms1x1 = 0,
        Ms2x2 = 2,
        Ms4x2 = 4,
        Ms2x1 = 5,
        Ms4x4 = 6
    }

    static class TextureMsaaModeConverter
    {
        /// <summary>
        /// Returns the total number of samples from the MSAA mode.
        /// </summary>
        /// <param name="msaaMode">The MSAA mode</param>
        /// <returns>The total number of samples</returns>
        public static int SamplesCount(this TextureMsaaMode msaaMode)
        {
            return msaaMode switch
            {
                TextureMsaaMode.Ms2x1 => 2,
                TextureMsaaMode.Ms2x2 => 4,
                TextureMsaaMode.Ms4x2 => 8,
                TextureMsaaMode.Ms4x4 => 16,
                _ => 1
            };
        }

        /// <summary>
        /// Returns the number of samples in the X direction from the MSAA mode.
        /// </summary>
        /// <param name="msaaMode">The MSAA mode</param>
        /// <returns>The number of samples in the X direction</returns>
        public static int SamplesInX(this TextureMsaaMode msaaMode)
        {
            return msaaMode switch
            {
                TextureMsaaMode.Ms2x1 => 2,
                TextureMsaaMode.Ms2x2 => 2,
                TextureMsaaMode.Ms4x2 => 4,
                TextureMsaaMode.Ms4x4 => 4,
                _ => 1
            };
        }

        /// <summary>
        /// Returns the number of samples in the Y direction from the MSAA mode.
        /// </summary>
        /// <param name="msaaMode">The MSAA mode</param>
        /// <returns>The number of samples in the Y direction</returns>
        public static int SamplesInY(this TextureMsaaMode msaaMode)
        {
            return msaaMode switch
            {
                TextureMsaaMode.Ms2x1 => 1,
                TextureMsaaMode.Ms2x2 => 2,
                TextureMsaaMode.Ms4x2 => 2,
                TextureMsaaMode.Ms4x4 => 4,
                _ => 1
            };
        }
    }
}