aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.Gpu/State/RtColorMask.cs
blob: 5992673f6d7c1f2ce69f4b9ff6148c955aa881f2 (plain)
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
namespace Ryujinx.Graphics.Gpu.State
{
    struct RtColorMask
    {
        public uint Packed;

        public bool UnpackRed()
        {
            return (Packed & 0x1) != 0;
        }

        public bool UnpackGreen()
        {
            return (Packed & 0x10) != 0;
        }

        public bool UnpackBlue()
        {
            return (Packed & 0x100) != 0;
        }

        public bool UnpackAlpha()
        {
            return (Packed & 0x1000) != 0;
        }
    }
}