diff options
author | dec05eba <dec05eba@protonmail.com> | 2021-11-18 12:17:31 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2021-11-18 12:17:31 +0100 |
commit | 8b020f5be8fbd3741085849fccd5c958cf260d2b (patch) | |
tree | e478b28007b4e3605489a0ebabc73f4d4a6f6fa5 /src/graphics | |
parent | a2ac8b537a61fb7a7be1a3e08635ffc88e17d966 (diff) |
Move glyph creation for text to render function instead of in set string, clear font glyph background before rendering the text
Diffstat (limited to 'src/graphics')
-rw-r--r-- | src/graphics/Text.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/graphics/Text.cpp b/src/graphics/Text.cpp index ad6fed2..fa82a88 100644 --- a/src/graphics/Text.cpp +++ b/src/graphics/Text.cpp @@ -56,7 +56,7 @@ namespace mgl { return { text.position.x, text.position.y }; } - FloatRect Text::get_bounds() const { + FloatRect Text::get_bounds() { mgl_vec2f bounds = mgl_text_get_bounds(&text); FloatRect rect(get_position(), { bounds.x, bounds.y }); return rect; |