mirror of
https://github.com/brl/mutter.git
synced 2024-11-21 23:50:41 -05:00
window-actor: Use more conservative paint volume
We know which part of the window is not obscured, so take advantaged of that to limit the size of the paint volume that we report.
This commit is contained in:
parent
40163c737c
commit
f96dc97c4f
@ -734,6 +734,9 @@ meta_window_actor_get_paint_volume (ClutterActor *actor,
|
||||
gdk_rectangle_union (&bounds, &shadow_bounds, &bounds);
|
||||
}
|
||||
|
||||
if (priv->unobscured_region)
|
||||
cairo_region_intersect_rectangle (priv->unobscured_region, &bounds);
|
||||
|
||||
origin.x = bounds.x;
|
||||
origin.y = bounds.y;
|
||||
origin.z = 0.0f;
|
||||
|
Loading…
Reference in New Issue
Block a user