aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics.GAL/ColorF.cs
blob: 2e971a62c8697a92e55c8126b18dbfe66c1f56fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
namespace Ryujinx.Graphics.GAL
{
    public struct ColorF
    {
        public float Red   { get; }
        public float Green { get; }
        public float Blue  { get; }
        public float Alpha { get; }

        public ColorF(float red, float green, float blue, float alpha)
        {
            Red   = red;
            Green = green;
            Blue  = blue;
            Alpha = alpha;
        }
    }
}