1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gfx/harfbuzz/src/hb-ot-shape-complex-tibetan.cc Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,61 @@ 1.4 +/* 1.5 + * Copyright © 2010,2012 Google, Inc. 1.6 + * 1.7 + * This is part of HarfBuzz, a text shaping library. 1.8 + * 1.9 + * Permission is hereby granted, without written agreement and without 1.10 + * license or royalty fees, to use, copy, modify, and distribute this 1.11 + * software and its documentation for any purpose, provided that the 1.12 + * above copyright notice and the following two paragraphs appear in 1.13 + * all copies of this software. 1.14 + * 1.15 + * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR 1.16 + * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES 1.17 + * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN 1.18 + * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH 1.19 + * DAMAGE. 1.20 + * 1.21 + * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, 1.22 + * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND 1.23 + * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS 1.24 + * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO 1.25 + * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. 1.26 + * 1.27 + * Google Author(s): Behdad Esfahbod 1.28 + */ 1.29 + 1.30 +#include "hb-ot-shape-complex-private.hh" 1.31 + 1.32 + 1.33 +static const hb_tag_t tibetan_features[] = 1.34 +{ 1.35 + HB_TAG('a','b','v','s'), 1.36 + HB_TAG('b','l','w','s'), 1.37 + HB_TAG('a','b','v','m'), 1.38 + HB_TAG('b','l','w','m'), 1.39 + HB_TAG_NONE 1.40 +}; 1.41 + 1.42 +static void 1.43 +collect_features_tibetan (hb_ot_shape_planner_t *plan) 1.44 +{ 1.45 + for (const hb_tag_t *script_features = tibetan_features; script_features && *script_features; script_features++) 1.46 + plan->map.add_global_bool_feature (*script_features); 1.47 +} 1.48 + 1.49 + 1.50 +const hb_ot_complex_shaper_t _hb_ot_complex_shaper_tibetan = 1.51 +{ 1.52 + "default", 1.53 + collect_features_tibetan, 1.54 + NULL, /* override_features */ 1.55 + NULL, /* data_create */ 1.56 + NULL, /* data_destroy */ 1.57 + NULL, /* preprocess_text */ 1.58 + HB_OT_SHAPE_NORMALIZATION_MODE_DEFAULT, 1.59 + NULL, /* decompose */ 1.60 + NULL, /* compose */ 1.61 + NULL, /* setup_masks */ 1.62 + HB_OT_SHAPE_ZERO_WIDTH_MARKS_DEFAULT, 1.63 + true, /* fallback_position */ 1.64 +};