13 lines
256 B
C#
13 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;
|
|
}
|
|
}
|