/src/harfbuzz/src/hb-ot-var-fvar-table.hh
Line | Count | Source |
1 | | /* |
2 | | * Copyright © 2017 Google, Inc. |
3 | | * |
4 | | * This is part of HarfBuzz, a text shaping library. |
5 | | * |
6 | | * Permission is hereby granted, without written agreement and without |
7 | | * license or royalty fees, to use, copy, modify, and distribute this |
8 | | * software and its documentation for any purpose, provided that the |
9 | | * above copyright notice and the following two paragraphs appear in |
10 | | * all copies of this software. |
11 | | * |
12 | | * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR |
13 | | * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES |
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 |
16 | | * DAMAGE. |
17 | | * |
18 | | * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, |
19 | | * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND |
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 |
22 | | * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
23 | | * |
24 | | * Google Author(s): Behdad Esfahbod |
25 | | */ |
26 | | |
27 | | #ifndef HB_OT_VAR_FVAR_TABLE_HH |
28 | | #define HB_OT_VAR_FVAR_TABLE_HH |
29 | | |
30 | | #include "hb-open-type.hh" |
31 | | |
32 | | /* |
33 | | * fvar -- Font Variations |
34 | | * https://docs.microsoft.com/en-us/typography/opentype/spec/fvar |
35 | | */ |
36 | | |
37 | | #define HB_OT_TAG_fvar HB_TAG('f','v','a','r') |
38 | | |
39 | | |
40 | | namespace OT { |
41 | | |
42 | | static bool axis_coord_pinned_or_within_axis_range (const hb_array_t<const F16DOT16> coords, |
43 | | unsigned axis_index, |
44 | | Triple axis_limit) |
45 | 0 | { |
46 | 0 | double axis_coord = static_cast<double>(coords[axis_index].to_float ()); |
47 | 0 | if (axis_limit.is_point ()) |
48 | 0 | { |
49 | 0 | if (axis_limit.minimum != axis_coord) |
50 | 0 | return false; |
51 | 0 | } |
52 | 0 | else |
53 | 0 | { |
54 | 0 | if (axis_coord < axis_limit.minimum || |
55 | 0 | axis_coord > axis_limit.maximum) |
56 | 0 | return false; |
57 | 0 | } |
58 | 0 | return true; |
59 | 0 | } Unexecuted instantiation: hb-font.cc:OT::axis_coord_pinned_or_within_axis_range(hb_array_t<OT::HBFixed<OT::NumType<true, int, 4u>, 16u> const>, unsigned int, Triple) Unexecuted instantiation: hb-ot-var.cc:OT::axis_coord_pinned_or_within_axis_range(hb_array_t<OT::HBFixed<OT::NumType<true, int, 4u>, 16u> const>, unsigned int, Triple) |
60 | | |
61 | | struct InstanceRecord |
62 | | { |
63 | | friend struct fvar; |
64 | | |
65 | | hb_array_t<const F16DOT16> get_coordinates (unsigned int axis_count) const |
66 | 0 | { return coordinatesZ.as_array (axis_count); } |
67 | | |
68 | | bool keep_instance (unsigned axis_count, |
69 | | const hb_map_t *axes_index_tag_map, |
70 | | const hb_hashmap_t<hb_tag_t, Triple> *axes_location) const |
71 | 0 | { |
72 | 0 | if (axes_location->is_empty ()) return true; |
73 | 0 | const hb_array_t<const F16DOT16> coords = get_coordinates (axis_count); |
74 | 0 | for (unsigned i = 0 ; i < axis_count; i++) |
75 | 0 | { |
76 | 0 | uint32_t *axis_tag; |
77 | 0 | if (!axes_index_tag_map->has (i, &axis_tag)) |
78 | 0 | return false; |
79 | 0 | if (!axes_location->has (*axis_tag)) |
80 | 0 | continue; |
81 | 0 |
|
82 | 0 | Triple axis_limit = axes_location->get (*axis_tag); |
83 | 0 | if (!axis_coord_pinned_or_within_axis_range (coords, i, axis_limit)) |
84 | 0 | return false; |
85 | 0 | } |
86 | 0 | return true; |
87 | 0 | } |
88 | | |
89 | | bool subset (hb_subset_context_t *c, |
90 | | unsigned axis_count, |
91 | | bool has_postscript_nameid) const |
92 | 0 | { |
93 | 0 | TRACE_SUBSET (this); |
94 | 0 | if (unlikely (!c->serializer->embed (subfamilyNameID))) return_trace (false); |
95 | 0 | if (unlikely (!c->serializer->embed (flags))) return_trace (false); |
96 | 0 |
|
97 | 0 | const hb_array_t<const F16DOT16> coords = get_coordinates (axis_count); |
98 | 0 | const hb_hashmap_t<hb_tag_t, Triple> *axes_location = &c->plan->user_axes_location; |
99 | 0 | for (unsigned i = 0 ; i < axis_count; i++) |
100 | 0 | { |
101 | 0 | uint32_t *axis_tag; |
102 | 0 | Triple *axis_limit; |
103 | 0 | // only keep instances whose coordinates == pinned axis location |
104 | 0 | if (!c->plan->axes_old_index_tag_map.has (i, &axis_tag)) return_trace (false); |
105 | 0 | if (axes_location->has (*axis_tag, &axis_limit)) |
106 | 0 | { |
107 | 0 | if (!axis_coord_pinned_or_within_axis_range (coords, i, *axis_limit)) |
108 | 0 | return_trace (false); |
109 | 0 |
|
110 | 0 | //skip axes dropped from fvar (pinned; or self-contained under avar2, |
111 | 0 | //where other pinned axes stay in fvar as hidden) |
112 | 0 | if (axis_limit->is_point () && !c->plan->axes_index_map.has (i)) |
113 | 0 | continue; |
114 | 0 | } |
115 | 0 |
|
116 | 0 | if (!c->serializer->embed (coords[i])) |
117 | 0 | return_trace (false); |
118 | 0 | } |
119 | 0 |
|
120 | 0 | if (has_postscript_nameid) |
121 | 0 | { |
122 | 0 | NameID name_id; |
123 | 0 | name_id = StructAfter<NameID> (coords); |
124 | 0 | if (!c->serializer->embed (name_id)) |
125 | 0 | return_trace (false); |
126 | 0 | } |
127 | 0 |
|
128 | 0 | return_trace (true); |
129 | 0 | } |
130 | | |
131 | | bool sanitize (hb_sanitize_context_t *c, unsigned int axis_count) const |
132 | 0 | { |
133 | 0 | TRACE_SANITIZE (this); |
134 | 0 | return_trace (c->check_struct (this) && |
135 | 0 | hb_barrier () && |
136 | 0 | c->check_array (coordinatesZ.arrayZ, axis_count)); |
137 | 0 | } |
138 | | |
139 | | protected: |
140 | | NameID subfamilyNameID;/* The name ID for entries in the 'name' table |
141 | | * that provide subfamily names for this instance. */ |
142 | | HBUINT16 flags; /* Reserved for future use — set to 0. */ |
143 | | UnsizedArrayOf<F16DOT16> |
144 | | coordinatesZ; /* The coordinates array for this instance. */ |
145 | | //NameID postScriptNameIDX;/*Optional. The name ID for entries in the 'name' |
146 | | // * table that provide PostScript names for this |
147 | | // * instance. */ |
148 | | |
149 | | public: |
150 | | DEFINE_SIZE_UNBOUNDED (4); |
151 | | }; |
152 | | |
153 | | struct AxisRecord |
154 | | { |
155 | 0 | int cmp (hb_tag_t key) const { return axisTag.cmp (key); } |
156 | | |
157 | | enum |
158 | | { |
159 | | AXIS_FLAG_HIDDEN = 0x0001, |
160 | | }; |
161 | | |
162 | | #ifndef HB_DISABLE_DEPRECATED |
163 | | void get_axis_deprecated (hb_ot_var_axis_t *info) const |
164 | 0 | { |
165 | 0 | info->tag = axisTag; |
166 | 0 | info->name_id = axisNameID; |
167 | 0 | get_coordinates (info->min_value, info->default_value, info->max_value); |
168 | 0 | } |
169 | | #endif |
170 | | |
171 | | void get_axis_info (unsigned axis_index, hb_ot_var_axis_info_t *info) const |
172 | 0 | { |
173 | 0 | info->axis_index = axis_index; |
174 | 0 | info->tag = axisTag; |
175 | 0 | info->name_id = axisNameID; |
176 | 0 | info->flags = (hb_ot_var_axis_flags_t) (unsigned int) flags; |
177 | 0 | get_coordinates (info->min_value, info->default_value, info->max_value); |
178 | 0 | info->reserved = 0; |
179 | 0 | } |
180 | | |
181 | 0 | hb_tag_t get_axis_tag () const { return axisTag; } |
182 | | |
183 | 0 | bool is_hidden () const { return flags & AXIS_FLAG_HIDDEN; } |
184 | | |
185 | | float normalize_axis_value (float v) const |
186 | 0 | { |
187 | 0 | float min_value, default_value, max_value; |
188 | 0 | get_coordinates (min_value, default_value, max_value); |
189 | |
|
190 | 0 | v = hb_clamp (v, min_value, max_value); |
191 | |
|
192 | 0 | if (v == default_value) |
193 | 0 | return 0; |
194 | 0 | else if (v < default_value) |
195 | 0 | return (v - default_value) / (default_value - min_value); |
196 | 0 | else |
197 | 0 | return (v - default_value) / (max_value - default_value); |
198 | 0 | } |
199 | | |
200 | 0 | hb_ot_name_id_t get_name_id () const { return axisNameID; } |
201 | | |
202 | | bool sanitize (hb_sanitize_context_t *c) const |
203 | 0 | { |
204 | 0 | TRACE_SANITIZE (this); |
205 | 0 | return_trace (c->check_struct (this)); |
206 | 0 | } |
207 | | |
208 | | void get_coordinates (float &min, float &default_, float &max) const |
209 | 0 | { |
210 | 0 | default_ = defaultValue.to_float (); |
211 | | /* Ensure order, to simplify client math. */ |
212 | 0 | min = hb_min (default_, minValue.to_float ()); |
213 | 0 | max = hb_max (default_, maxValue.to_float ()); |
214 | 0 | } |
215 | | |
216 | | float get_default () const |
217 | 0 | { |
218 | 0 | return defaultValue.to_float (); |
219 | 0 | } |
220 | | |
221 | | TripleDistances get_triple_distances () const |
222 | 0 | { |
223 | 0 | float min, default_, max; |
224 | 0 | get_coordinates (min, default_, max); |
225 | 0 | return TripleDistances ( |
226 | 0 | static_cast<double>(min), |
227 | 0 | static_cast<double>(default_), |
228 | 0 | static_cast<double>(max)); |
229 | 0 | } |
230 | | |
231 | | bool subset (hb_subset_context_t *c) const |
232 | 0 | { |
233 | 0 | TRACE_SUBSET (this); |
234 | 0 | auto *out = c->serializer->embed (this); |
235 | 0 | if (unlikely (!out)) return_trace (false); |
236 | 0 |
|
237 | 0 | const hb_hashmap_t<hb_tag_t, Triple>& user_axes_location = c->plan->user_axes_location; |
238 | 0 | Triple *axis_limit; |
239 | 0 | if (user_axes_location.has (axisTag, &axis_limit)) |
240 | 0 | { |
241 | 0 | if (c->plan->has_avar2 && axis_limit->is_point ()) |
242 | 0 | { |
243 | 0 | /* Pinned axis in avar2 mode: keep in fvar as hidden with |
244 | 0 | * min=default=max=pinned_value. */ |
245 | 0 | out->minValue.set_float (axis_limit->middle); |
246 | 0 | out->defaultValue.set_float (axis_limit->middle); |
247 | 0 | out->maxValue.set_float (axis_limit->middle); |
248 | 0 | out->flags = out->flags | (HBUINT16) AXIS_FLAG_HIDDEN; |
249 | 0 | } |
250 | 0 | else |
251 | 0 | { |
252 | 0 | out->minValue.set_float (axis_limit->minimum); |
253 | 0 | out->defaultValue.set_float (axis_limit->middle); |
254 | 0 | out->maxValue.set_float (axis_limit->maximum); |
255 | 0 | } |
256 | 0 | } |
257 | 0 | return_trace (true); |
258 | 0 | } |
259 | | |
260 | | public: |
261 | | Tag axisTag; /* Tag identifying the design variation for the axis. */ |
262 | | protected: |
263 | | F16DOT16 minValue; /* The minimum coordinate value for the axis. */ |
264 | | F16DOT16 defaultValue; /* The default coordinate value for the axis. */ |
265 | | F16DOT16 maxValue; /* The maximum coordinate value for the axis. */ |
266 | | public: |
267 | | HBUINT16 flags; /* Axis flags. */ |
268 | | NameID axisNameID; /* The name ID for entries in the 'name' table that |
269 | | * provide a display name for this axis. */ |
270 | | |
271 | | public: |
272 | | DEFINE_SIZE_STATIC (20); |
273 | | }; |
274 | | |
275 | | struct fvar |
276 | | { |
277 | | static constexpr hb_tag_t tableTag = HB_OT_TAG_fvar; |
278 | | |
279 | 0 | bool has_data () const { return version.to_int (); } |
280 | | |
281 | | bool sanitize (hb_sanitize_context_t *c) const |
282 | 0 | { |
283 | 0 | TRACE_SANITIZE (this); |
284 | 0 | return_trace (version.sanitize (c) && |
285 | 0 | hb_barrier () && |
286 | 0 | likely (version.major == 1) && |
287 | 0 | c->check_struct (this) && |
288 | 0 | hb_barrier () && |
289 | 0 | axisSize == 20 && /* Assumed in our code. */ |
290 | 0 | instanceSize >= axisCount * 4 + 4 && |
291 | 0 | get_axes ().sanitize (c) && |
292 | 0 | c->check_range (&StructAfter<InstanceRecord> (get_axes ()), |
293 | 0 | instanceCount, instanceSize)); |
294 | 0 | } |
295 | | |
296 | 0 | unsigned int get_axis_count () const { return axisCount; } |
297 | | |
298 | | #ifndef HB_DISABLE_DEPRECATED |
299 | | unsigned int get_axes_deprecated (unsigned int start_offset, |
300 | | unsigned int *axes_count /* IN/OUT */, |
301 | | hb_ot_var_axis_t *axes_array /* OUT */) const |
302 | 0 | { |
303 | 0 | if (axes_count && axes_array) |
304 | 0 | { |
305 | 0 | hb_array_t<const AxisRecord> arr = get_axes ().sub_array (start_offset, axes_count); |
306 | 0 | for (unsigned i = 0; i < arr.length; ++i) |
307 | 0 | arr[i].get_axis_deprecated (&axes_array[i]); |
308 | 0 | } |
309 | 0 | return axisCount; |
310 | 0 | } |
311 | | #endif |
312 | | |
313 | | unsigned int get_axis_infos (unsigned int start_offset, |
314 | | unsigned int *axes_count /* IN/OUT */, |
315 | | hb_ot_var_axis_info_t *axes_array /* OUT */) const |
316 | 0 | { |
317 | 0 | if (axes_count && axes_array) |
318 | 0 | { |
319 | 0 | hb_array_t<const AxisRecord> arr = get_axes ().sub_array (start_offset, axes_count); |
320 | 0 | for (unsigned i = 0; i < arr.length; ++i) |
321 | 0 | arr[i].get_axis_info (start_offset + i, &axes_array[i]); |
322 | 0 | } |
323 | 0 | return axisCount; |
324 | 0 | } |
325 | | |
326 | | #ifndef HB_DISABLE_DEPRECATED |
327 | | bool |
328 | | find_axis_deprecated (hb_tag_t tag, unsigned *axis_index, hb_ot_var_axis_t *info) const |
329 | 0 | { |
330 | 0 | unsigned i; |
331 | 0 | if (!axis_index) axis_index = &i; |
332 | 0 | *axis_index = HB_OT_VAR_NO_AXIS_INDEX; |
333 | 0 | auto axes = get_axes (); |
334 | 0 | return axes.lfind (tag, axis_index) && ((void) axes[*axis_index].get_axis_deprecated (info), true); |
335 | 0 | } |
336 | | #endif |
337 | | bool |
338 | | find_axis_info (hb_tag_t tag, hb_ot_var_axis_info_t *info) const |
339 | 0 | { |
340 | 0 | unsigned i; |
341 | 0 | auto axes = get_axes (); |
342 | 0 | return axes.lfind (tag, &i) && ((void) axes[i].get_axis_info (i, info), true); |
343 | 0 | } |
344 | | |
345 | | float normalize_axis_value (unsigned int axis_index, float v) const |
346 | 0 | { return get_axes ()[axis_index].normalize_axis_value (v); } |
347 | | |
348 | 0 | unsigned int get_instance_count () const { return instanceCount; } |
349 | | |
350 | | hb_ot_name_id_t get_instance_subfamily_name_id (unsigned int instance_index) const |
351 | 0 | { |
352 | 0 | const InstanceRecord *instance = get_instance (instance_index); |
353 | 0 | if (unlikely (!instance)) return HB_OT_NAME_ID_INVALID; |
354 | 0 | return instance->subfamilyNameID; |
355 | 0 | } |
356 | | |
357 | | hb_ot_name_id_t get_instance_postscript_name_id (unsigned int instance_index) const |
358 | 0 | { |
359 | 0 | const InstanceRecord *instance = get_instance (instance_index); |
360 | 0 | if (unlikely (!instance)) return HB_OT_NAME_ID_INVALID; |
361 | 0 | if (instanceSize >= axisCount * 4 + 6) |
362 | 0 | return StructAfter<NameID> (instance->get_coordinates (axisCount)); |
363 | 0 | return HB_OT_NAME_ID_INVALID; |
364 | 0 | } |
365 | | |
366 | | unsigned int get_instance_coords (unsigned int instance_index, |
367 | | unsigned int *coords_length, /* IN/OUT */ |
368 | | float *coords /* OUT */) const |
369 | 0 | { |
370 | 0 | const InstanceRecord *instance = get_instance (instance_index); |
371 | 0 | if (unlikely (!instance)) |
372 | 0 | { |
373 | 0 | if (coords_length) |
374 | 0 | *coords_length = 0; |
375 | 0 | return 0; |
376 | 0 | } |
377 | | |
378 | 0 | if (coords_length && *coords_length && coords) |
379 | 0 | { |
380 | 0 | hb_array_t<const F16DOT16> instanceCoords = instance->get_coordinates (axisCount) |
381 | 0 | .sub_array (0, coords_length); |
382 | 0 | for (unsigned int i = 0; i < instanceCoords.length; i++) |
383 | 0 | coords[i] = instanceCoords.arrayZ[i].to_float (); |
384 | 0 | } |
385 | 0 | return axisCount; |
386 | 0 | } |
387 | | |
388 | | void collect_name_ids (hb_hashmap_t<hb_tag_t, Triple> *user_axes_location, |
389 | | hb_map_t *axes_old_index_tag_map, |
390 | | hb_set_t *nameids /* IN/OUT */) const |
391 | 0 | { |
392 | 0 | if (!has_data ()) return; |
393 | 0 |
|
394 | 0 | auto axis_records = get_axes (); |
395 | 0 | for (unsigned i = 0 ; i < (unsigned)axisCount; i++) |
396 | 0 | { |
397 | 0 | hb_tag_t axis_tag = axis_records[i].get_axis_tag (); |
398 | 0 | if (user_axes_location->has (axis_tag) && |
399 | 0 | user_axes_location->get (axis_tag).is_point ()) |
400 | 0 | continue; |
401 | 0 |
|
402 | 0 | nameids->add (axis_records[i].get_name_id ()); |
403 | 0 | } |
404 | 0 |
|
405 | 0 | for (unsigned i = 0 ; i < (unsigned)instanceCount; i++) |
406 | 0 | { |
407 | 0 | const InstanceRecord *instance = get_instance (i); |
408 | 0 |
|
409 | 0 | if (!instance->keep_instance (axisCount, axes_old_index_tag_map, user_axes_location)) |
410 | 0 | continue; |
411 | 0 |
|
412 | 0 | nameids->add (instance->subfamilyNameID); |
413 | 0 |
|
414 | 0 | if (instanceSize >= axisCount * 4 + 6) |
415 | 0 | { |
416 | 0 | unsigned post_script_name_id = StructAfter<NameID> (instance->get_coordinates (axisCount)); |
417 | 0 | if (post_script_name_id != HB_OT_NAME_ID_INVALID) nameids->add (post_script_name_id); |
418 | 0 | } |
419 | 0 | } |
420 | 0 | } |
421 | | |
422 | | bool subset (hb_subset_context_t *c) const |
423 | 0 | { |
424 | 0 | TRACE_SUBSET (this); |
425 | 0 | unsigned retained_axis_count = c->plan->axes_index_map.get_population (); |
426 | 0 | if (!retained_axis_count) //all axes are pinned |
427 | 0 | return_trace (false); |
428 | 0 |
|
429 | 0 | fvar *out = c->serializer->embed (this); |
430 | 0 | if (unlikely (!out)) return_trace (false); |
431 | 0 |
|
432 | 0 | if (!c->serializer->check_assign (out->axisCount, retained_axis_count, HB_SERIALIZE_ERROR_INT_OVERFLOW)) |
433 | 0 | return_trace (false); |
434 | 0 |
|
435 | 0 | bool has_postscript_nameid = false; |
436 | 0 | if (instanceSize >= axisCount * 4 + 6) |
437 | 0 | has_postscript_nameid = true; |
438 | 0 |
|
439 | 0 | if (!c->serializer->check_assign (out->instanceSize, retained_axis_count * 4 + (has_postscript_nameid ? 6 : 4), |
440 | 0 | HB_SERIALIZE_ERROR_INT_OVERFLOW)) |
441 | 0 | return_trace (false); |
442 | 0 |
|
443 | 0 | auto axes_records = get_axes (); |
444 | 0 | for (unsigned i = 0 ; i < (unsigned)axisCount; i++) |
445 | 0 | { |
446 | 0 | if (!c->plan->axes_index_map.has (i)) continue; |
447 | 0 | if (unlikely (!axes_records[i].subset (c))) |
448 | 0 | return_trace (false); |
449 | 0 | } |
450 | 0 |
|
451 | 0 | if (!c->serializer->check_assign (out->firstAxis, get_size (), HB_SERIALIZE_ERROR_INT_OVERFLOW)) |
452 | 0 | return_trace (false); |
453 | 0 |
|
454 | 0 | unsigned num_retained_instances = 0; |
455 | 0 | for (unsigned i = 0 ; i < (unsigned)instanceCount; i++) |
456 | 0 | { |
457 | 0 | const InstanceRecord *instance = get_instance (i); |
458 | 0 | auto snap = c->serializer->snapshot (); |
459 | 0 | if (!instance->subset (c, axisCount, has_postscript_nameid)) |
460 | 0 | c->serializer->revert (snap); |
461 | 0 | else |
462 | 0 | num_retained_instances++; |
463 | 0 | } |
464 | 0 |
|
465 | 0 | return_trace (c->serializer->check_assign (out->instanceCount, num_retained_instances, HB_SERIALIZE_ERROR_INT_OVERFLOW)); |
466 | 0 | } |
467 | | |
468 | | public: |
469 | | hb_array_t<const AxisRecord> get_axes () const |
470 | 8.20k | { return hb_array (&(this+firstAxis), axisCount); } |
471 | | |
472 | | const InstanceRecord *get_instance (unsigned int i) const |
473 | 0 | { |
474 | 0 | if (unlikely (i >= instanceCount)) return nullptr; |
475 | 0 | return &StructAtOffset<InstanceRecord> (&StructAfter<InstanceRecord> (get_axes ()), |
476 | 0 | i * instanceSize); |
477 | 0 | } |
478 | | |
479 | | protected: |
480 | | FixedVersion<>version; /* Version of the fvar table |
481 | | * initially set to 0x00010000u */ |
482 | | Offset16To<AxisRecord> |
483 | | firstAxis; /* Offset in bytes from the beginning of the table |
484 | | * to the start of the AxisRecord array. */ |
485 | | HBUINT16 reserved; /* This field is permanently reserved. Set to 2. */ |
486 | | HBUINT16 axisCount; /* The number of variation axes in the font (the |
487 | | * number of records in the axes array). */ |
488 | | HBUINT16 axisSize; /* The size in bytes of each VariationAxisRecord — |
489 | | * set to 20 (0x0014) for this version. */ |
490 | | HBUINT16 instanceCount; /* The number of named instances defined in the font |
491 | | * (the number of records in the instances array). */ |
492 | | HBUINT16 instanceSize; /* The size in bytes of each InstanceRecord — set |
493 | | * to either axisCount * sizeof(F16DOT16) + 4, or to |
494 | | * axisCount * sizeof(F16DOT16) + 6. */ |
495 | | |
496 | | public: |
497 | | DEFINE_SIZE_STATIC (16); |
498 | | }; |
499 | | |
500 | | } /* namespace OT */ |
501 | | |
502 | | |
503 | | #endif /* HB_OT_VAR_FVAR_TABLE_HH */ |