Searched defs:a_weight (Results 1 - 1 of 1) sorted by relevance

/inkscape/src/libcroco/
H A Dcr-fonts.c756 * @a_weight: the #CRFontWeight to consider.
758 * Returns a font weight bolder than @a_weight
761 cr_font_weight_get_bolder (enum CRFontWeight a_weight) argument
763 if (a_weight == FONT_WEIGHT_INHERIT) {
765 return a_weight;
766 } else if (a_weight >= FONT_WEIGHT_900) {
768 } else if (a_weight < FONT_WEIGHT_NORMAL) {
770 } else if (a_weight == FONT_WEIGHT_BOLDER
771 || a_weight == FONT_WEIGHT_LIGHTER) {
775 return a_weight <<
[all...]

Completed in 27 milliseconds