2019-12-29 12:41:50 -05:00
|
|
|
namespace Ryujinx.Graphics.GAL
|
2019-10-13 02:02:07 -04:00
|
|
|
{
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|