Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(198)

Side by Side Diff: third_party/harfbuzz-ng/src/hb-ot-layout-private.hh

Issue 9223010: Update harfbuzz-ng to 1a5a91dc0d8bf4b72a2f22dc6300b06ad7000b79. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Don't use -M option for 'git diff' to patch correctly Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007,2008,2009 Red Hat, Inc. 2 * Copyright © 2007,2008,2009 Red Hat, Inc.
3 * 3 *
4 * This is part of HarfBuzz, a text shaping library. 4 * This is part of HarfBuzz, a text shaping library.
5 * 5 *
6 * Permission is hereby granted, without written agreement and without 6 * Permission is hereby granted, without written agreement and without
7 * license or royalty fees, to use, copy, modify, and distribute this 7 * license or royalty fees, to use, copy, modify, and distribute this
8 * software and its documentation for any purpose, provided that the 8 * software and its documentation for any purpose, provided that the
9 * above copyright notice and the following two paragraphs appear in 9 * above copyright notice and the following two paragraphs appear in
10 * all copies of this software. 10 * all copies of this software.
11 * 11 *
12 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR 12 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
13 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES 13 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
14 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN 14 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
15 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH 15 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
16 * DAMAGE. 16 * DAMAGE.
17 * 17 *
18 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, 18 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
19 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND 19 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS 20 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
21 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO 21 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
22 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. 22 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
23 * 23 *
24 * Red Hat Author(s): Behdad Esfahbod 24 * Red Hat Author(s): Behdad Esfahbod
25 */ 25 */
26 26
27 #ifndef HB_OT_LAYOUT_PRIVATE_HH 27 #ifndef HB_OT_LAYOUT_PRIVATE_HH
28 #define HB_OT_LAYOUT_PRIVATE_HH 28 #define HB_OT_LAYOUT_PRIVATE_HH
29 29
30 #include "hb-private.h" 30 #include "hb-private.hh"
31 31
32 #include "hb-ot-layout.h" 32 #include "hb-ot-layout.h"
33 #include "hb-ot-head-private.hh"
34 33
35 #include "hb-font-private.h" 34 #include "hb-font-private.hh"
36 #include "hb-buffer-private.hh" 35 #include "hb-buffer-private.hh"
37 36
38 HB_BEGIN_DECLS
39 37
40 38
39 /*
40 * GDEF
41 */
42
41 /* buffer var allocations */ 43 /* buffer var allocations */
42 #define props_cache() var1.u16[1] /* glyph_props cache */ 44 #define props_cache() var1.u16[1] /* glyph_props cache */
43 45
44
45 /* XXX cleanup */ 46 /* XXX cleanup */
46 typedef enum { 47 typedef enum {
47 HB_OT_LAYOUT_GLYPH_CLASS_UNCLASSIFIED = 0x0001, 48 HB_OT_LAYOUT_GLYPH_CLASS_UNCLASSIFIED = 0x0001,
48 HB_OT_LAYOUT_GLYPH_CLASS_BASE_GLYPH = 0x0002, 49 HB_OT_LAYOUT_GLYPH_CLASS_BASE_GLYPH = 0x0002,
49 HB_OT_LAYOUT_GLYPH_CLASS_LIGATURE = 0x0004, 50 HB_OT_LAYOUT_GLYPH_CLASS_LIGATURE = 0x0004,
50 HB_OT_LAYOUT_GLYPH_CLASS_MARK = 0x0008, 51 HB_OT_LAYOUT_GLYPH_CLASS_MARK = 0x0008,
51 HB_OT_LAYOUT_GLYPH_CLASS_COMPONENT = 0x0010 52 HB_OT_LAYOUT_GLYPH_CLASS_COMPONENT = 0x0010
52 } hb_ot_layout_glyph_class_t; 53 } hb_ot_layout_glyph_class_t;
53 54
54 55
56 HB_INTERNAL unsigned int
57 _hb_ot_layout_get_glyph_property (hb_face_t *face,
58 hb_glyph_info_t *info);
59
60 HB_INTERNAL hb_bool_t
61 _hb_ot_layout_check_glyph_property (hb_face_t *face,
62 hb_glyph_info_t *ginfo,
63 unsigned int lookup_props,
64 unsigned int *property_out);
65
66 HB_INTERNAL hb_bool_t
67 _hb_ot_layout_skip_mark (hb_face_t *face,
68 hb_glyph_info_t *ginfo,
69 unsigned int lookup_props,
70 unsigned int *property_out);
71
72
73
55 /* 74 /*
56 * hb_ot_layout_t 75 * hb_ot_layout_t
57 */ 76 */
58 77
59 struct hb_ot_layout_t 78 struct hb_ot_layout_t
60 { 79 {
61 hb_blob_t *gdef_blob; 80 hb_blob_t *gdef_blob;
62 hb_blob_t *gsub_blob; 81 hb_blob_t *gsub_blob;
63 hb_blob_t *gpos_blob; 82 hb_blob_t *gpos_blob;
64 83
65 const struct GDEF *gdef; 84 const struct GDEF *gdef;
66 const struct GSUB *gsub; 85 const struct GSUB *gsub;
67 const struct GPOS *gpos; 86 const struct GPOS *gpos;
68 }; 87 };
69 88
70 struct hb_ot_layout_context_t
71 {
72 hb_face_t *face;
73 hb_font_t *font;
74
75 /* Convert from font-space to user-space */
76 inline hb_position_t scale_x (int16_t v) { return scale (v, this->font->x_scal e); }
77 inline hb_position_t scale_y (int16_t v) { return scale (v, this->font->y_scal e); }
78
79 private:
80 inline hb_position_t scale (int16_t v, unsigned int scale) { return v * (int64 _t) scale / this->face->head_table->get_upem (); }
81 };
82
83 89
84 HB_INTERNAL hb_ot_layout_t * 90 HB_INTERNAL hb_ot_layout_t *
85 _hb_ot_layout_new (hb_face_t *face); 91 _hb_ot_layout_create (hb_face_t *face);
86 92
87 HB_INTERNAL void 93 HB_INTERNAL void
88 _hb_ot_layout_free (hb_ot_layout_t *layout); 94 _hb_ot_layout_destroy (hb_ot_layout_t *layout);
89 95
90 96
91 /*
92 * GDEF
93 */
94
95 HB_INTERNAL unsigned int
96 _hb_ot_layout_get_glyph_property (hb_face_t *face,
97 hb_glyph_info_t *info);
98
99 HB_INTERNAL hb_bool_t
100 _hb_ot_layout_check_glyph_property (hb_face_t *face,
101 hb_glyph_info_t *ginfo,
102 unsigned int lookup_props,
103 unsigned int *property_out);
104
105 HB_INTERNAL hb_bool_t
106 _hb_ot_layout_skip_mark (hb_face_t *face,
107 hb_glyph_info_t *ginfo,
108 unsigned int lookup_props,
109 unsigned int *property_out);
110
111
112 HB_END_DECLS
113 97
114 #endif /* HB_OT_LAYOUT_PRIVATE_HH */ 98 #endif /* HB_OT_LAYOUT_PRIVATE_HH */
OLDNEW
« no previous file with comments | « third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh ('k') | third_party/harfbuzz-ng/src/hb-ot-map.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698