util: Fix compiler warning
A harmless warning due to meta_surface_actor_get_texture() now returning a pointer to MetaShapedTexture instead of ClutterActor. No functional changes. https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/502
This commit is contained in:
parent
9593e20425
commit
03c4930883
@ -430,7 +430,7 @@ ClutterContent *
|
|||||||
shell_util_get_content_for_window_actor (MetaWindowActor *window_actor,
|
shell_util_get_content_for_window_actor (MetaWindowActor *window_actor,
|
||||||
MetaRectangle *window_rect)
|
MetaRectangle *window_rect)
|
||||||
{
|
{
|
||||||
ClutterActor *texture;
|
MetaShapedTexture *texture;
|
||||||
ClutterContent *content;
|
ClutterContent *content;
|
||||||
cairo_surface_t *surface;
|
cairo_surface_t *surface;
|
||||||
cairo_rectangle_int_t clip;
|
cairo_rectangle_int_t clip;
|
||||||
@ -453,8 +453,7 @@ shell_util_get_content_for_window_actor (MetaWindowActor *window_actor,
|
|||||||
clip.width = ceilf (window_rect->width * resource_scale);
|
clip.width = ceilf (window_rect->width * resource_scale);
|
||||||
clip.height = ceilf (window_rect->height * resource_scale);
|
clip.height = ceilf (window_rect->height * resource_scale);
|
||||||
|
|
||||||
surface = meta_shaped_texture_get_image (META_SHAPED_TEXTURE (texture),
|
surface = meta_shaped_texture_get_image (texture, &clip);
|
||||||
&clip);
|
|
||||||
|
|
||||||
content = clutter_canvas_new ();
|
content = clutter_canvas_new ();
|
||||||
clutter_canvas_set_size (CLUTTER_CANVAS (content),
|
clutter_canvas_set_size (CLUTTER_CANVAS (content),
|
||||||
|
Loading…
Reference in New Issue
Block a user