gfx/harfbuzz/src/hb-tt-font.cc

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/gfx/harfbuzz/src/hb-tt-font.cc	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,77 @@
     1.4 +/*
     1.5 + * Copyright © 2011  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-font-private.hh" /* Shall be first since may include windows.h */
    1.31 +
    1.32 +#include "hb-open-type-private.hh"
    1.33 +
    1.34 +#include "hb-ot-hhea-table.hh"
    1.35 +#include "hb-ot-hmtx-table.hh"
    1.36 +
    1.37 +#include <string.h>
    1.38 +
    1.39 +
    1.40 +
    1.41 +#if 0
    1.42 +struct hb_tt_font_t
    1.43 +{
    1.44 +  const struct hhea *hhea;
    1.45 +  hb_blob_t *hhea_blob;
    1.46 +};
    1.47 +
    1.48 +
    1.49 +static hb_tt_font_t *
    1.50 +_hb_tt_font_create (hb_font_t *font)
    1.51 +{
    1.52 +  /* TODO Remove this object altogether */
    1.53 +  hb_tt_font_t *tt = (hb_tt_font_t *) calloc (1, sizeof (hb_tt_font_t));
    1.54 +
    1.55 +  tt->hhea_blob = Sanitizer<hhea>::sanitize (font->face->reference_table (HB_OT_TAG_hhea));
    1.56 +  tt->hhea = Sanitizer<hhea>::lock_instance (tt->hhea_blob);
    1.57 +
    1.58 +  return tt;
    1.59 +}
    1.60 +
    1.61 +static void
    1.62 +_hb_tt_font_destroy (hb_tt_font_t *tt)
    1.63 +{
    1.64 +  hb_blob_destroy (tt->hhea_blob);
    1.65 +
    1.66 +  free (tt);
    1.67 +}
    1.68 +
    1.69 +static inline const hhea&
    1.70 +_get_hhea (hb_face_t *face)
    1.71 +{
    1.72 +  return likely (face->tt && face->tt->hhea) ? *face->tt->hhea : Null(hhea);
    1.73 +}
    1.74 +
    1.75 +
    1.76 +/*
    1.77 + * hb_tt_font_funcs_t
    1.78 + */
    1.79 +
    1.80 +#endif

mercurial