diff options
author | Benjamin Otte <otte@redhat.com> | 2018-04-21 00:47:35 +0200 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2018-04-24 23:16:58 +0200 |
commit | dbe4f1d766f0c571ea0d778cd561929c19e63c94 (patch) | |
tree | 75f7ad7544e71e4c909e340bfc72804ca946d9a1 /gdk/gdkdrawcontextprivate.h | |
parent | e7d6648f4618ec9fb44aa218d6965e1d613718c2 (diff) | |
download | gtk+-dbe4f1d766f0c571ea0d778cd561929c19e63c94.tar.gz |
gdk: Add gdk_draw_context_get_frame_region()
This does the same as gdk_drawing_context_get_clip().
Diffstat (limited to 'gdk/gdkdrawcontextprivate.h')
-rw-r--r-- | gdk/gdkdrawcontextprivate.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gdk/gdkdrawcontextprivate.h b/gdk/gdkdrawcontextprivate.h index 33c4b72546..242919698f 100644 --- a/gdk/gdkdrawcontextprivate.h +++ b/gdk/gdkdrawcontextprivate.h @@ -34,6 +34,8 @@ typedef struct _GdkDrawContextClass GdkDrawContextClass; struct _GdkDrawContext { GObject parent_instance; + + cairo_region_t *frame_region; }; struct _GdkDrawContextClass |