ClearColors.cs 185 B

12345678910
  1. namespace Ryujinx.Graphics.Gpu.State
  2. {
  3. struct ClearColors
  4. {
  5. public float Red;
  6. public float Green;
  7. public float Blue;
  8. public float Alpha;
  9. }
  10. }