From 3a0e27e794bd7a0a49ed5be41c044d9be910ea07 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Mon, 27 Jun 2022 13:07:39 -0600 Subject: [PATCH] [glyf] Move comment --- src/OT/glyf/Glyph.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/OT/glyf/Glyph.hh b/src/OT/glyf/Glyph.hh index 365939d9a..2199d2c48 100644 --- a/src/OT/glyf/Glyph.hh +++ b/src/OT/glyf/Glyph.hh @@ -84,6 +84,7 @@ struct Glyph if (unlikely (depth > HB_MAX_NESTING_LEVEL)) return false; contour_point_vector_t stack_points; bool inplace = type == SIMPLE && all_points.length == 0; + /* Load into all_points if it's empty, as an optimization. */ contour_point_vector_t &points = inplace ? all_points : stack_points; switch (type) { @@ -95,7 +96,6 @@ struct Glyph break; } case SIMPLE: - /* Load into all_points if it's empty, as an optimization. */ if (unlikely (!SimpleGlyph (*header, bytes).get_contour_points (points, phantom_only))) return false; break;