12a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)/*
22a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * Copyright © 2010,2012  Google, Inc.
32a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) *
42a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) *  This is part of HarfBuzz, a text shaping library.
52a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) *
62a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * Permission is hereby granted, without written agreement and without
72a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * license or royalty fees, to use, copy, modify, and distribute this
82a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * software and its documentation for any purpose, provided that the
92a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * above copyright notice and the following two paragraphs appear in
102a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * all copies of this software.
112a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) *
122a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
132a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
142a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
152a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
162a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * DAMAGE.
172a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) *
182a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
192a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
202a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * FITNESS FOR A PARTICULAR PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS
212a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
222a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
232a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) *
242a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) * Google Author(s): Behdad Esfahbod
252a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles) */
262a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
272a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)#include "hb-ot-shape-complex-private.hh"
282a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
292a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)
302a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)const hb_ot_complex_shaper_t _hb_ot_complex_shaper_default =
312a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles){
322a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  "default",
3323730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)  NULL, /* collect_features */
342a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  NULL, /* override_features */
352a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  NULL, /* data_create */
362a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  NULL, /* data_destroy */
372a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  NULL, /* preprocess_text */
3823730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)  HB_OT_SHAPE_NORMALIZATION_MODE_DEFAULT,
392a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  NULL, /* decompose */
4023730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)  NULL, /* compose */
412a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  NULL, /* setup_masks */
4223730a6e56a168d1879203e4b3819bb36e3d8f1fTorne (Richard Coles)  HB_OT_SHAPE_ZERO_WIDTH_MARKS_DEFAULT,
432a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)  true, /* fallback_position */
442a99a7e74a7f215066514fe81d2bfa6639d9edddTorne (Richard Coles)};
45