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

12 lines
313 B
C#

using System.Runtime.InteropServices;
namespace Microsoft.Iris.Render.Interop.Drawing;
// Bit-for-bit mirror of Microsoft.Iris.RenderAPI.Drawing.SizeF (UIX/Microsoft/Iris/RenderAPI/Drawing/SizeF.cs).
[StructLayout(LayoutKind.Sequential)]
public struct SizeF
{
public float width;
public float height;
}