mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-25 21:21:21 +00:00
a40282b2fb
Another private debug API.
22 lines
354 B
C
22 lines
354 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));
|
|
|
|
char * gsk_path_point_to_string (GskPathPoint *point);
|
|
void gsk_path_point_print (GskPathPoint *point);
|
|
|
|
G_END_DECLS
|
|
|