diff options
author | Ninni Pipping <over999ships@gmail.com> | 2023-03-07 16:02:41 +0100 |
---|---|---|
committer | Ninni Pipping <over999ships@gmail.com> | 2023-03-07 16:27:24 +0100 |
commit | 3a5d7a4b5495f3f2d67ef9831b353168db6808e3 (patch) | |
tree | 2e931f57e25d24aeb390ef06d5cfc9fa64fafdfe /modules/text_server_adv/thorvg_svg_in_ot.h | |
parent | 013a45706897af989703b944c7cd5f4f58a6c060 (diff) | |
download | redot-engine-3a5d7a4b5495f3f2d67ef9831b353168db6808e3.tar.gz |
[TextServer] Make sure Freetype is enabled for ot-svg
Diffstat (limited to 'modules/text_server_adv/thorvg_svg_in_ot.h')
-rw-r--r-- | modules/text_server_adv/thorvg_svg_in_ot.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/text_server_adv/thorvg_svg_in_ot.h b/modules/text_server_adv/thorvg_svg_in_ot.h index 4035a984b6..95ba29a20d 100644 --- a/modules/text_server_adv/thorvg_svg_in_ot.h +++ b/modules/text_server_adv/thorvg_svg_in_ot.h @@ -47,10 +47,11 @@ using namespace godot; #include "core/templates/hash_map.h" #include "core/typedefs.h" -#include "modules/modules_enabled.gen.h" // For svg. +#include "modules/modules_enabled.gen.h" // For svg, freetype. #endif #ifdef MODULE_SVG_ENABLED +#ifdef MODULE_FREETYPE_ENABLED #include <freetype/freetype.h> #include <freetype/otsvg.h> @@ -81,6 +82,7 @@ FT_Error tvg_svg_in_ot_render(FT_GlyphSlot p_slot, FT_Pointer *p_state); SVG_RendererHooks *get_tvg_svg_in_ot_hooks(); +#endif // MODULE_FREETYPE_ENABLED #endif // MODULE_SVG_ENABLED #endif // THORVG_SVG_IN_OT_H |