mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2025-01-15 14:50:06 +00:00
c35bb11c18
Use simple representation of just { contour index, segment index, t value }
19 lines
250 B
C
19 lines
250 B
C
#pragma once
|
|
|
|
#include "gskpathpoint.h"
|
|
#include "gskcontourprivate.h"
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
struct _GskRealPathPoint
|
|
{
|
|
gsize contour;
|
|
unsigned int idx;
|
|
float t;
|
|
};
|
|
|
|
G_STATIC_ASSERT (sizeof (GskRealPathPoint) <= sizeof (GskPathPoint));
|
|
|
|
G_END_DECLS
|
|
|