From b5de2a92e92158c6cc7ad1d727344838841fbab8 Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Mon, 28 Sep 2020 16:46:42 -0700 Subject: [PATCH] Clear the Minikin layout cache during engine destruction --- 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 31c3ba6d25ac1..5f895ef41afee 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();