[hb-cairo] Minor simplify

This commit is contained in:
Behdad Esfahbod 2023-01-23 16:22:26 -07:00 committed by Matthias Clasen
parent 26d34392e2
commit 034d4d26f2
2 changed files with 2 additions and 6 deletions

View File

@ -288,9 +288,7 @@ _hb_cairo_get_color_stops (hb_cairo_context_t *c,
if ((*stops)[i].is_foreground)
{
double r, g, b, a;
cairo_pattern_t *foreground;
foreground = cairo_user_scaled_font_get_foreground_source (c->scaled_font);
cairo_pattern_t *foreground = cairo_user_scaled_font_get_foreground_source (c->scaled_font);
if (cairo_pattern_get_rgba (foreground, &r, &g, &b, &a) == CAIRO_STATUS_SUCCESS)
(*stops)[i].color = HB_COLOR (round (b * 255.), round (g * 255.), round (r * 255.),
round (a * hb_color_get_alpha ((*stops)[i].color)));

View File

@ -253,10 +253,8 @@ hb_cairo_paint_color (hb_paint_funcs_t *pfuncs HB_UNUSED,
if (use_foreground)
{
cairo_pattern_t *foreground;
double r, g, b, a;
foreground = cairo_user_scaled_font_get_foreground_source (c->scaled_font);
cairo_pattern_t *foreground = cairo_user_scaled_font_get_foreground_source (c->scaled_font);
if (cairo_pattern_get_rgba (foreground, &r, &g, &b, &a) == CAIRO_STATUS_SUCCESS)
cairo_set_source_rgba (cr, r, g, b, a * hb_color_get_alpha (color) / 255.);
else