namespace Robust.Client.Graphics
{
///
/// Formats for the color component of a render target.
///
public enum RenderTargetColorFormat : byte
{
///
/// 8 bits per channel linear RGBA.
///
Rgba8,
///
/// 8 bits per channel sRGB with linear alpha channel.
///
Rgba8Srgb,
R32F,
RG32F,
///
/// 16 bits per channel floating point linear RGBA.
///
Rgba16F,
R11FG11FB10F,
R8,
}
}