Cosmos/source/Cosmos.System2/Graphics/ColorOrder.cs
2020-08-20 22:40:06 +02:00

10 lines
215 B
C#

namespace Cosmos.System.Graphics
{
/// <summary>
/// Describes the order in which the colors are stored in each pixel of an image
/// </summary>
public enum ColorOrder
{
RGB, BGR
}
}