Files
MicrosoftIris/UIXrender/Interop/Drawing/ColorF.cs
T
2026-07-22 18:34:57 -05:00

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;
}