ColorF.cs 419 B

123456789101112131415161718
  1. namespace Ryujinx.Graphics.GAL.Color
  2. {
  3. public struct ColorF
  4. {
  5. public float Red { get; }
  6. public float Green { get; }
  7. public float Blue { get; }
  8. public float Alpha { get; }
  9. public ColorF(float red, float green, float blue, float alpha)
  10. {
  11. Red = red;
  12. Green = green;
  13. Blue = blue;
  14. Alpha = alpha;
  15. }
  16. }
  17. }