mirror of
https://github.com/brl/mutter.git
synced 2024-11-25 09:30:45 -05:00
compositor: Fix variable name style in meta_shape_cow_for_window
This has bugged me forever...
This commit is contained in:
parent
be57308663
commit
97872e70a5
@ -667,18 +667,25 @@ meta_compositor_unmanage_screen (MetaCompositor *compositor,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/**
|
||||||
* Shapes the cow so that the given window is exposed,
|
* meta_shape_cow_for_window:
|
||||||
* when metaWindow is NULL it clears the shape again
|
* @screen: A #MetaScreen
|
||||||
|
* @window: (allow-none): A #MetaWindow to shape the COW for
|
||||||
|
*
|
||||||
|
* Sets an bounding shape on the COW so that the given window
|
||||||
|
* is exposed. If @window is %NULL it clears the shape again.
|
||||||
|
*
|
||||||
|
* Used so we can unredirect windows, by shaping away the part
|
||||||
|
* of the COW, letting the raw window be seen through below.
|
||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
meta_shape_cow_for_window (MetaScreen *screen,
|
meta_shape_cow_for_window (MetaScreen *screen,
|
||||||
MetaWindow *metaWindow)
|
MetaWindow *window)
|
||||||
{
|
{
|
||||||
MetaCompScreen *info = meta_screen_get_compositor_data (screen);
|
MetaCompScreen *info = meta_screen_get_compositor_data (screen);
|
||||||
Display *xdisplay = meta_display_get_xdisplay (meta_screen_get_display (screen));
|
Display *xdisplay = meta_display_get_xdisplay (meta_screen_get_display (screen));
|
||||||
|
|
||||||
if (metaWindow == NULL)
|
if (window == NULL)
|
||||||
XFixesSetWindowShapeRegion (xdisplay, info->output, ShapeBounding, 0, 0, None);
|
XFixesSetWindowShapeRegion (xdisplay, info->output, ShapeBounding, 0, 0, None);
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
@ -687,7 +694,7 @@ meta_shape_cow_for_window (MetaScreen *screen,
|
|||||||
int width, height;
|
int width, height;
|
||||||
MetaRectangle rect;
|
MetaRectangle rect;
|
||||||
|
|
||||||
meta_window_get_frame_rect (metaWindow, &rect);
|
meta_window_get_frame_rect (window, &rect);
|
||||||
|
|
||||||
window_bounds.x = rect.x;
|
window_bounds.x = rect.x;
|
||||||
window_bounds.y = rect.y;
|
window_bounds.y = rect.y;
|
||||||
|
Loading…
Reference in New Issue
Block a user