gtk/gsk/gskpathpointprivate.h

21 lines
305 B
C
Raw Normal View History

#pragma once
#include "gskpathpoint.h"
#include "gskcontourprivate.h"
G_BEGIN_DECLS
struct _GskRealPathPoint
{
gsize contour;
2023-08-09 18:32:53 +00:00
gsize idx;
float t;
};
G_STATIC_ASSERT (sizeof (GskRealPathPoint) <= sizeof (GskPathPoint));
const char * gsk_path_point_to_string (GskPathPoint *point);
G_END_DECLS