1
0
Fork 0

shaped-texture: Move variable declaration to the top

Just a minor cleanup.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/2990>
This commit is contained in:
Robert Mader 2022-11-20 07:15:06 +01:00 committed by Robert Mader
parent 2dd5196267
commit 9884a2c3d2

View file

@ -754,6 +754,7 @@ do_paint_content (MetaShapedTexture *stex,
if (!blended_tex_region || !cairo_region_is_empty (blended_tex_region))
{
CoglPipeline *blended_pipeline;
CoglColor color;
if (stex->mask_texture == NULL)
{
@ -769,7 +770,6 @@ do_paint_content (MetaShapedTexture *stex,
cogl_pipeline_set_layer_texture (blended_pipeline, 0, paint_tex);
cogl_pipeline_set_layer_filters (blended_pipeline, 0, min_filter, mag_filter);
CoglColor color;
cogl_color_init_from_4ub (&color, opacity, opacity, opacity, opacity);
cogl_pipeline_set_color (blended_pipeline, &color);