mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-11 11:20:12 +00:00
59d638a09f
It's essentially a port of GtkRoundedBox to graphene.
16 lines
394 B
C
16 lines
394 B
C
#ifndef __GSK_ROUNDED_RECT_PRIVATE_H__
|
|
#define __GSK_ROUNDED_RECT_PRIVATE_H__
|
|
|
|
#include "gskroundedrect.h"
|
|
|
|
#include <cairo.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
void gsk_rounded_rect_path (const GskRoundedRect *self,
|
|
cairo_t *cr);
|
|
|
|
G_END_DECLS
|
|
|
|
#endif /* __GSK_ROUNDED_RECT_PRIVATE_H__ */
|