mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 10:50:10 +00:00
19 lines
243 B
C
19 lines
243 B
C
#pragma once
|
|
|
|
#include "gskpathpoint.h"
|
|
#include "gskcontourprivate.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
struct _GskRealPathPoint
|
|
{
|
|
gsize contour;
|
|
gsize idx;
|
|
float t;
|
|
};
|
|
|
|
G_STATIC_ASSERT (sizeof (GskRealPathPoint) <= sizeof (GskPathPoint));
|
|
|
|
G_END_DECLS
|
|
|