GalColorF.cs 539 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. this.Red = Red;
  16. this.Green = Green;
  17. this.Blue = Blue;
  18. this.Alpha = Alpha;
  19. }
  20. }
  21. }