summaryrefslogtreecommitdiff
path: root/src/client.cpp
diff options
context:
space:
mode:
authorThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-03-25 08:29:53 +0100
committerThorbjørn Lindeijer <bjorn@lindeijer.nl>2024-03-26 07:30:39 +0000
commitda7a32c6ea92242c99412c2702ad59df36007de4 (patch)
tree79bea6d27c808d4fe5ac63941f8cbb52afb34552 /src/client.cpp
parent4091bd9568e5aff4a1f24416d26da567a2c076ad (diff)
downloadmana-da7a32c6ea92242c99412c2702ad59df36007de4.tar.gz
mana-da7a32c6ea92242c99412c2702ad59df36007de4.tar.bz2
mana-da7a32c6ea92242c99412c2702ad59df36007de4.tar.xz
mana-da7a32c6ea92242c99412c2702ad59df36007de4.zip
Added support for HiDPI fonts
* TrueTypeFont class now takes into account the graphics scale, in order to render an appropriate higher-resolution texture. * Removed TrueTypeFont::fontCounter, since TTF_Init/TTF_Quit already keep a counter. * Avoid copying the rendered string needlessly, when it already exists in the cache. Avoid another copy, when inserting a new chunk into the cache.
Diffstat (limited to 'src/client.cpp')
-rw-r--r--src/client.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/client.cpp b/src/client.cpp
index 7d887436..8e144e8e 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -1339,12 +1339,9 @@ void Client::checkGraphicsSize()
const int width = graphics->getWidth();
const int height = graphics->getHeight();
- const auto guiTop = gui->getTop();
- if (guiTop->getWidth() == width && guiTop->getHeight() == height)
+ if (!gui->videoResized(width, height))
return;
- gui->videoResized(width, height);
-
if (mDesktop)
mDesktop->setSize(width, height);