mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 05:25:05 +00:00
[hb-view] Simplify background drawing
Works around a Firefox bug. Fixes https://github.com/harfbuzz/harfbuzz/issues/4811
This commit is contained in:
parent
700ef11c9b
commit
7a390b5095
1 changed files with 1 additions and 2 deletions
|
@ -559,10 +559,9 @@ helper_cairo_create_context (double w, double h,
|
|||
default:
|
||||
case CAIRO_CONTENT_COLOR:
|
||||
case CAIRO_CONTENT_COLOR_ALPHA:
|
||||
cairo_set_operator (cr, CAIRO_OPERATOR_SOURCE);
|
||||
cairo_set_operator (cr, CAIRO_OPERATOR_OVER);
|
||||
cairo_set_source_rgba (cr, br / 255., bg / 255., bb / 255., ba / 255.);
|
||||
cairo_paint (cr);
|
||||
cairo_set_operator (cr, CAIRO_OPERATOR_OVER);
|
||||
cairo_set_source_rgba (cr, fr / 255., fg / 255., fb / 255., fa / 255.);
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue