mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-21 05:18:38 +00:00
Create ColorOrder.cs
This commit is contained in:
parent
fca8ca9080
commit
9d8f4ba515
1 changed files with 10 additions and 0 deletions
10
source/Cosmos.System2/Graphics/ColorOrder.cs
Normal file
10
source/Cosmos.System2/Graphics/ColorOrder.cs
Normal 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
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue