ClearColors.cs 256 B

12345678910111213
  1. namespace Ryujinx.Graphics.Gpu.State
  2. {
  3. /// <summary>
  4. /// Color buffer clear color.
  5. /// </summary>
  6. struct ClearColors
  7. {
  8. public float Red;
  9. public float Green;
  10. public float Blue;
  11. public float Alpha;
  12. }
  13. }