You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
872 B
37 lines
872 B
11 months ago
|
using System.Runtime.InteropServices;
|
||
|
|
||
|
namespace Avalonia.Gif
|
||
|
{
|
||
|
[StructLayout(LayoutKind.Explicit)]
|
||
|
public readonly struct GifColor
|
||
|
{
|
||
|
[FieldOffset(3)]
|
||
|
public readonly byte A;
|
||
|
|
||
|
[FieldOffset(2)]
|
||
|
public readonly byte R;
|
||
|
|
||
|
[FieldOffset(1)]
|
||
|
public readonly byte G;
|
||
|
|
||
|
[FieldOffset(0)]
|
||
|
public readonly byte B;
|
||
|
|
||
|
/// <summary>
|
||
|
/// A struct that represents a ARGB color and is aligned as
|
||
|
/// a BGRA bytefield in memory.
|
||
|
/// </summary>
|
||
|
/// <param name="r">Red</param>
|
||
|
/// <param name="g">Green</param>
|
||
|
/// <param name="b">Blue</param>
|
||
|
/// <param name="a">Alpha</param>
|
||
|
public GifColor(byte r, byte g, byte b, byte a = byte.MaxValue)
|
||
|
{
|
||
|
A = a;
|
||
|
R = r;
|
||
|
G = g;
|
||
|
B = b;
|
||
|
}
|
||
|
}
|
||
|
}
|