explicit SharedFontInternal (const Typeface::Ptr& face) noexcept : typeface (face), typefaceName (face->getName()), typefaceStyle (face->getStyle()), height (FontValues::defaultFontHeight) { jassert (typefaceName.isNotEmpty()); }
Font::SharedFontInternal::SharedFontInternal (const Typeface::Ptr& typeface_) noexcept : typefaceFamily (typeface_->getFamily()), typefaceStyle (typeface_->getStyle()), height (FontValues::defaultFontHeight), horizontalScale (1.0f), kerning (0), ascent (0), underline (false), typeface (typeface_) { }
SharedFontInternal (const Typeface::Ptr& typeface_) noexcept : typefaceName (typeface_->getName()), typefaceStyle (typeface_->getStyle()), height (FontValues::defaultFontHeight), horizontalScale (1.0f), kerning (0), ascent (0), underline (false), typeface (typeface_) { jassert (typefaceName.isNotEmpty()); }