mirror of
https://github.com/brl/mutter.git
synced 2025-02-16 21:34:09 +00:00
clutter/text: Stop using deprecated cogl-pango API
Use the one passing a framebuffer instead of the one using the deprecated implicit framebuffer stack. https://gitlab.gnome.org/GNOME/mutter/merge_requests/935
This commit is contained in:
parent
cb9d6b79ef
commit
339372ac99
@ -1991,7 +1991,7 @@ selection_paint (ClutterText *self,
|
|||||||
color->blue,
|
color->blue,
|
||||||
paint_opacity * color->alpha / 255);
|
paint_opacity * color->alpha / 255);
|
||||||
|
|
||||||
cogl_pango_render_layout (layout, priv->text_x, 0, &cogl_color, 0);
|
cogl_pango_show_layout (fb, layout, priv->text_x, 0, &cogl_color);
|
||||||
|
|
||||||
cogl_framebuffer_pop_clip (fb);
|
cogl_framebuffer_pop_clip (fb);
|
||||||
}
|
}
|
||||||
@ -2755,7 +2755,7 @@ clutter_text_paint (ClutterActor *self,
|
|||||||
priv->text_color.green,
|
priv->text_color.green,
|
||||||
priv->text_color.blue,
|
priv->text_color.blue,
|
||||||
real_opacity);
|
real_opacity);
|
||||||
cogl_pango_render_layout (layout, priv->text_x, priv->text_y, &color, 0);
|
cogl_pango_show_layout (fb, layout, priv->text_x, priv->text_y, &color);
|
||||||
|
|
||||||
selection_paint (text, fb);
|
selection_paint (text, fb);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user