GalColorF.cs 519 B

12345678910111213141516171819202122
  1. namespace Ryujinx.Graphics.Gal
  2. {
  3. public struct GalColorF
  4. {
  5. public float Red { get; private set; }
  6. public float Green { get; private set; }
  7. public float Blue { get; private set; }
  8. public float Alpha { get; private set; }
  9. public GalColorF(
  10. float red,
  11. float green,
  12. float blue,
  13. float alpha)
  14. {
  15. Red = red;
  16. Green = green;
  17. Blue = blue;
  18. Alpha = alpha;
  19. }
  20. }
  21. }