blob: 5b40cb45bc564124c343a3e2dc321fa5a425f37d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#ifndef __GSK_ROUNDED_RECT_PRIVATE_H__
#define __GSK_ROUNDED_RECT_PRIVATE_H__
#include "gskroundedrect.h"
#include <cairo.h>
G_BEGIN_DECLS
gboolean gsk_rounded_rect_is_circular (const GskRoundedRect *self);
void gsk_rounded_rect_path (const GskRoundedRect *self,
cairo_t *cr);
void gsk_rounded_rect_to_float (const GskRoundedRect *self,
float rect[12]);
G_END_DECLS
#endif /* __GSK_ROUNDED_RECT_PRIVATE_H__ */
|