summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberts Muktupāvels <alberts.muktupavels@gmail.com>2015-01-19 20:57:07 +0200
committerAlberts Muktupāvels <alberts.muktupavels@gmail.com>2015-01-20 03:02:11 +0200
commitef570cd84ccb299690f0ce7f16572b51cb4b2da5 (patch)
tree675f456704734d6a83a36e6b5a4befb410cd2ea3
parentee27c50b2216ce02dbf4eab970cee7feb95f988d (diff)
downloadmetacity-ef570cd84ccb299690f0ce7f16572b51cb4b2da5.tar.gz
frames: add dest_kind to apply_cairo_region_to_window
-rw-r--r--src/ui/frames.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ui/frames.c b/src/ui/frames.c
index bcbddf2e..518185ab 100644
--- a/src/ui/frames.c
+++ b/src/ui/frames.c
@@ -827,6 +827,7 @@ static void
apply_cairo_region_to_window (Display *display,
Window xwindow,
cairo_region_t *region,
+ int dest_kind,
int op)
{
int n_rects, i;
@@ -848,7 +849,7 @@ apply_cairo_region_to_window (Display *display,
}
XShapeCombineRectangles (display, xwindow,
- ShapeBounding, 0, 0, rects, n_rects,
+ dest_kind, 0, 0, rects, n_rects,
op, YXBanded);
g_free (rects);
@@ -1108,7 +1109,7 @@ meta_frames_apply_shapes (MetaFrames *frames,
cairo_region_destroy (client_region);
apply_cairo_region_to_window (GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()), shape_window,
- window_region, ShapeUnion);
+ window_region, ShapeBounding, ShapeUnion);
/* Now copy shape_window shape to the real frame */
XShapeCombineShape (GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()), frame->xwindow, ShapeBounding,
@@ -1128,7 +1129,7 @@ meta_frames_apply_shapes (MetaFrames *frames,
frame->xwindow);
apply_cairo_region_to_window (GDK_DISPLAY_XDISPLAY (gdk_display_get_default ()), frame->xwindow,
- window_region, ShapeSet);
+ window_region, ShapeBounding, ShapeSet);
}
frame->shape_applied = TRUE;