mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
14 lines
335 B
C#
14 lines
335 B
C#
using System.Runtime.InteropServices;
|
|
|
|
namespace Microsoft.Iris.Render.Interop.Drawing;
|
|
|
|
// Bit-for-bit mirror of Microsoft.Iris.Render.ColorF (UIX.RenderApi/Microsoft/Iris/Render/ColorF.cs).
|
|
[StructLayout(LayoutKind.Sequential)]
|
|
public struct ColorF
|
|
{
|
|
public float a;
|
|
public float r;
|
|
public float g;
|
|
public float b;
|
|
}
|