From bbbbe80ec9bc45c5b685bc09c8f993e98496555c Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 7 Dec 2010 16:22:02 -0500 Subject: [PATCH] Rename original_direction to target_direction --- src/hb-ot-shape-private.hh | 2 +- src/hb-ot-shape.cc | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/hb-ot-shape-private.hh b/src/hb-ot-shape-private.hh index 6197406..deaec97 100644 --- a/src/hb-ot-shape-private.hh +++ b/src/hb-ot-shape-private.hh @@ -65,7 +65,7 @@ struct hb_ot_shape_context_t unsigned int num_user_features; /* Transient stuff */ - hb_direction_t original_direction; + hb_direction_t target_direction; hb_bool_t applied_substitute_complex; hb_bool_t applied_position_complex; }; diff --git a/src/hb-ot-shape.cc b/src/hb-ot-shape.cc index f1ca7c2..92c3925 100644 --- a/src/hb-ot-shape.cc +++ b/src/hb-ot-shape.cc @@ -193,7 +193,7 @@ hb_mirror_chars (hb_ot_shape_context_t *c) { hb_unicode_get_mirroring_func_t get_mirroring = c->buffer->unicode->v.get_mirroring; - if (HB_DIRECTION_IS_FORWARD (c->original_direction)) + if (HB_DIRECTION_IS_FORWARD (c->target_direction)) return; hb_mask_t rtlm_mask = c->plan->map.get_1_mask (HB_TAG ('r','t','l','m')); @@ -294,7 +294,7 @@ static void hb_ot_shape_execute_internal (hb_ot_shape_context_t *c) { /* Save the original direction, we use it later. */ - c->original_direction = c->buffer->props.direction; + c->target_direction = c->buffer->props.direction; hb_reset_glyph_infos (c); /* BUFFER: Clear buffer var1 and var2 */ @@ -336,7 +336,7 @@ hb_ot_shape_execute_internal (hb_ot_shape_context_t *c) hb_position_complex_fallback_visual (c); } - c->buffer->props.direction = c->original_direction; + c->buffer->props.direction = c->target_direction; } void -- 2.7.4