Ryujinx-GtkSharp/Source/Libs/CairoSharp/PathData.cs
dmg fbe180d742 Added Cairo.Path properties
New properties on Path is lazy evaluated. Only reading is supported.
2021-07-17 17:05:21 +03:00

29 lines
478 B
C#

using System;
using System.Runtime.InteropServices;
namespace Cairo
{
[StructLayout(LayoutKind.Explicit)]
public struct PathData
{
[FieldOffset(0)]
public PathDataHeader Header;
[FieldOffset(0)]
public PathDataPoint Point;
}
[StructLayout(LayoutKind.Sequential)]
public struct PathDataHeader
{
public PathDataType Type;
public int Length;
}
[StructLayout(LayoutKind.Sequential)]
public struct PathDataPoint
{
public double X;
public double Y;
}
}