- namespace Ryujinx.Graphics.Gpu.State
- {
- /// <summary>
- /// Color buffer clear color.
- /// </summary>
- struct ClearColors
- {
- #pragma warning disable CS0649
- public float Red;
- public float Green;
- public float Blue;
- public float Alpha;
- #pragma warning restore CS0649
- }
- }
|