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 19:53:22 +0200
commit94c8d620a8019c673f72bdec8cc73925bc3bdf7d (patch)
treec64f172e6aed05fcabc8e871be74ce664e66e1fe
parent37e1fa8cddfc9c6aefa2ec1ab02536bdb8176e6a (diff)
downloadmetacity-94c8d620a8019c673f72bdec8cc73925bc3bdf7d.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;