| 65 | } |
| 66 | |
| 67 | Valdi::Result<Ref<Font>> Font::withSize(Scalar size) { |
| 68 | return withStyleAndSize(style(), size); |
| 69 | } |
| 70 | |
| 71 | Valdi::Result<Ref<Font>> Font::withStyleAndSize(FontStyle style, Scalar size) { |
| 72 | if (_typeface->fontStyle() == style && _size == size) { |