From 94be45980883bea99bb1028445c6ab7100c11409 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Mon, 18 Jul 2022 12:13:48 -0600 Subject: [PATCH] [hb-shape] Internal rename --- util/hb-shape.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/util/hb-shape.cc b/util/hb-shape.cc index 13c277a2a..deceda42e 100644 --- a/util/hb-shape.cc +++ b/util/hb-shape.cc @@ -36,7 +36,7 @@ const unsigned DEFAULT_FONT_SIZE = FONT_SIZE_UPEM; const unsigned SUBPIXEL_BITS = 0; -struct output_buffer_t : output_options_t<> +struct shape_output_t : output_options_t<> { void add_options (option_parser_t *parser) { @@ -129,7 +129,7 @@ struct output_buffer_t : output_options_t<> const char *message, void *user_data) { - output_buffer_t *that = (output_buffer_t *) user_data; + shape_output_t *that = (shape_output_t *) user_data; that->trace (buffer, font, message); return true; } @@ -162,6 +162,6 @@ struct output_buffer_t : output_options_t<> int main (int argc, char **argv) { - using main_t = main_font_text_t, font_options_t, shape_text_options_t>; + using main_t = main_font_text_t, font_options_t, shape_text_options_t>; return batch_main (argc, argv); }