mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-25 21:21:21 +00:00
031c0ec3e5
Add a private gsk_path_point_to_string that can be called in the debugger if you want to see the contents of a GskPathPoint and are too lazy to cast it to GskRealPathPoint yourself.
21 lines
305 B
C
21 lines
305 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));
|
|
|
|
const char * gsk_path_point_to_string (GskPathPoint *point);
|
|
|
|
G_END_DECLS
|
|
|