1
Graphics / Re: Is there any way to have sf::Text not cache the new font texture into memory whe
« on: November 24, 2024, 12:15:54 am »You need to understand that your use case of printing all the characters in existence is very niche/unusual one, which SFML ends up not being optimized for or offering any easy option to deal with.I see, thanks for your answer
Yes, it's not (just) about VRAM, but the texture size.
This limitation is of course on its own not very niche and there has been some attempts to add support for multiple textures, to work around it.
Currently, there isn't really a way around this beyond resetting the font.
You could see if it helps to load the font into memory and use openFromMemory, that way you at least wouldn't need to go to the disk, at the cost of a few MB of memory.
Also, make sure you're measuring the changes in release mode. Especially around construction/destruction you can get way worse performance in debug mode.
