1
1
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2025-03-19 17:55:45 -05:00

14 lines
256 B
C#

namespace Ryujinx.Graphics.Gpu.State
{
/// <summary>
/// Color buffer clear color.
/// </summary>
struct ClearColors
{
public float Red;
public float Green;
public float Blue;
public float Alpha;
}
}