Fixed unnecessary loadGlyph() calls

getKerning() now passes the bold flag to getGlyph() function, so already cached glyph can be used.
This commit is contained in:
Radek Dutkiewicz 2021-01-20 19:36:24 +00:00 committed by Lukas Dürrenberger
parent 165b715d02
commit 84e0a25e04
3 changed files with 6 additions and 6 deletions

View File

@ -217,7 +217,7 @@ public:
/// \return Kerning value for \a first and \a second, in pixels
///
////////////////////////////////////////////////////////////
float getKerning(Uint32 first, Uint32 second, unsigned int characterSize) const;
float getKerning(Uint32 first, Uint32 second, unsigned int characterSize, bool bold = false) const;
////////////////////////////////////////////////////////////
/// \brief Get the line spacing

View File

@ -376,7 +376,7 @@ bool Font::hasGlyph(Uint32 codePoint) const
////////////////////////////////////////////////////////////
float Font::getKerning(Uint32 first, Uint32 second, unsigned int characterSize) const
float Font::getKerning(Uint32 first, Uint32 second, unsigned int characterSize, bool bold) const
{
// Special case where first or second is 0 (null character)
if (first == 0 || second == 0)
@ -391,8 +391,8 @@ float Font::getKerning(Uint32 first, Uint32 second, unsigned int characterSize)
FT_UInt index2 = FT_Get_Char_Index(face, second);
// Retrieve position compensation deltas generated by FT_LOAD_FORCE_AUTOHINT flag
float firstRsbDelta = getGlyph(first, characterSize, false).rsb_delta;
float secondLsbDelta = getGlyph(second, characterSize, false).lsb_delta;
float firstRsbDelta = getGlyph(first, characterSize, bold).rsb_delta;
float secondLsbDelta = getGlyph(second, characterSize, bold).lsb_delta;
// Get the kerning vector
FT_Vector kerning;

View File

@ -332,7 +332,7 @@ Vector2f Text::findCharacterPos(std::size_t index) const
Uint32 curChar = m_string[i];
// Apply the kerning offset
position.x += m_font->getKerning(prevChar, curChar, m_characterSize);
position.x += m_font->getKerning(prevChar, curChar, m_characterSize, isBold);
prevChar = curChar;
// Handle special characters
@ -451,7 +451,7 @@ void Text::ensureGeometryUpdate() const
continue;
// Apply the kerning offset
x += m_font->getKerning(prevChar, curChar, m_characterSize);
x += m_font->getKerning(prevChar, curChar, m_characterSize, isBold);
// If we're using the underlined style and there's a new line, draw a line
if (isUnderlined && (curChar == L'\n' && prevChar != L'\n'))