diff --git a/wgui/src/renderer_vk/text/custom_glyph.rs b/wgui/src/renderer_vk/text/custom_glyph.rs index 517f47a..17e56be 100644 --- a/wgui/src/renderer_vk/text/custom_glyph.rs +++ b/wgui/src/renderer_vk/text/custom_glyph.rs @@ -171,6 +171,7 @@ impl CustomGlyphData { Ok(data) => return Ok(data), Err(hashed_asset) => { let data = Self::new(CustomGlyphContent::from_bin_svg(data)?); + log::trace!("Caching {path} with content_id {}", data.id); globals_borrow.custom_glyph_cache.insert(hashed_asset, &data); Ok(data) } @@ -324,6 +325,8 @@ fn rasterize_svg(tree: &Tree, input: &RasterizeCustomGlyphRequest) -> Option