From 7e20575b6bbf5d59d09344ff45b2d36c99b87d41 Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Thu, 8 Oct 2020 13:53:04 -0700 Subject: [PATCH] Clear the Minikin layout cache during engine destruction (#21473) --- third_party/txt/src/txt/font_collection.cc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/third_party/txt/src/txt/font_collection.cc b/third_party/txt/src/txt/font_collection.cc index 31c3ba6d25a..5f895ef41af 100644 --- a/third_party/txt/src/txt/font_collection.cc +++ b/third_party/txt/src/txt/font_collection.cc @@ -27,6 +27,7 @@ #include "flutter/fml/logging.h" #include "flutter/fml/trace_event.h" #include "font_skia.h" +#include "minikin/Layout.h" #include "txt/platform.h" #include "txt/text_style.h" @@ -82,7 +83,9 @@ class TxtFallbackFontProvider FontCollection::FontCollection() : enable_font_fallback_(true) {} -FontCollection::~FontCollection() = default; +FontCollection::~FontCollection() { + minikin::Layout::purgeCaches(); +} size_t FontCollection::GetFontManagersCount() const { return GetFontManagerOrder().size();