Create ColorOrder.cs

This commit is contained in:
Quajak 2020-08-20 22:40:06 +02:00 committed by GitHub
parent fca8ca9080
commit 9d8f4ba515
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,10 @@
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
}
}