Is there any interest in extending sf::Font and sf::Text to support multiple textures so that all characters are displayed regardless of how big they are?Of course, we'll have to fix this one day, we can't leave something broken in the API.
Of course, we'll have to fix this one day, we can't leave something broken in the API.Can't it be fixed already in SFML 2? The only issue is designing how to extend the interface of Font (and possibly Glyph) in a backward-compatible way. I could come up with some suggestions, but I'm not familiar with your practices so it may be a waste of time.
What about simply adding a pointer to the texture in sf::Glyph? So there would only be Font::getGlyph, no more Font::getTexture.It's great in terms of interface, but can make it a bit harder to optimize if needed.
Fixed both issuesNow the entries in the vertex map will stay forever, even if never used again by the sf::Text instance.
QuoteFixed both issuesNow the entries in the vertex map will stay forever, even if never used again by the sf::Text instance.
Perhaps you have missed the elusive line that frees the entire vertex map on calls to Text::setFont()?Indeed :)
That was for the better :) - I've just added a few comments to sf::Text and also aligned setCharacterSize() to match the behavior of setFont().QuotePerhaps you have missed the elusive line that frees the entire vertex map on calls to Text::setFont()?Indeed :)
Do you consider this issue a bug or a feature?Glyphs not showing is definitely a bug.
I've noticed #1034 (https://github.com/SFML/SFML/pull/1034) has been tagged with "feature". Are you not convinced glyphs are dropped? Or is it not that important considering the target audience of SFML?QuoteDo you consider this issue a bug or a feature?Glyphs not showing is definitely a bug.
Extending Font and Text to support multiple textures so that glyphs are not discarded in case one texture gets filled.
Then again the PR itself could probably go either way. In the end it's not really that important. ;)Sure. The important thing to ask is, what process do you use to decide regarding undecided PRs?