Ryujinx/Ryujinx.Graphics.GAL/ColorF.cs

33 lines
1 KiB
C#
Raw Normal View History

using System;
2019-12-29 18:41:50 +01:00
namespace Ryujinx.Graphics.GAL
2019-10-13 08:02:07 +02:00
{
public struct ColorF : IEquatable<ColorF>
2019-10-13 08:02:07 +02:00
{
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;
}
public bool Equals(ColorF color) => Red == color.Red &&
Green == color.Green &&
Blue == color.Blue &&
Alpha == color.Alpha;
public override bool Equals(object obj) => (obj is ColorF color) && Equals(color);
public override int GetHashCode() => HashCode.Combine(Red, Green, Blue, Alpha);
public static bool operator ==(ColorF l, ColorF r) => l.Equals(r);
public static bool operator !=(ColorF l, ColorF r) => !l.Equals(r);
2019-10-13 08:02:07 +02:00
}
}