From d1b8b68c6825617d8416728bd188306c05587260 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Tue, 15 Feb 2022 13:40:48 +0000 Subject: [PATCH] No need to partition font glyph triangulation. --- common/font/glyph.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/font/glyph.cpp b/common/font/glyph.cpp index eaea30c88d..5809887e2e 100644 --- a/common/font/glyph.cpp +++ b/common/font/glyph.cpp @@ -120,7 +120,7 @@ void OUTLINE_GLYPH::Triangulate( std::function aCallback ) const { - const_cast( this )->CacheTriangulation(); + const_cast( this )->CacheTriangulation( false ); for( unsigned int i = 0; i < TriangulatedPolyCount(); i++ ) {