blob: b9f7b68476e4dcc11f3b7bc9fb7da958bd85c564 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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;
}
}
|