Home | History | Annotate | Download | only in src

Lines Matching defs:vhea

5 #include "vhea.h"
11 // vhea - Vertical Header Table
12 // http://www.microsoft.com/opentype/otspec/vhea.htm
18 OpenTypeVHEA *vhea = new OpenTypeVHEA;
19 file->vhea = vhea;
21 if (!table.ReadU32(&vhea->header.version)) {
24 if (vhea->header.version != 0x00010000 &&
25 vhea->header.version != 0x00011000) {
29 if (!ParseMetricsHeader(file, &table, &vhea->header)) {
37 // vhea should'nt serialise when vmtx doesn't exist.
38 // Firefox developer pointed out that vhea/vmtx should serialise iff GSUB is
40 return file->vhea != NULL && file->vmtx != NULL &&
45 if (!SerialiseMetricsHeader(out, &file->vhea->header)) {
52 delete file->vhea;