Home | History | Annotate | Download | only in utils

Lines Matching refs:maxp

65 bool SkSfntUtils::ReadTable_maxp(SkFontID fontID, SkSfntTable_maxp* maxp) {
76 maxp->fVersion = parse_be32(p);
77 maxp->fNumGlyphs = parse_be16(p);
78 maxp->fMaxPoints = parse_be16(p);
79 maxp->fMaxContours = parse_be16(p);
80 maxp->fMaxComponentPoints = parse_be16(p);
81 maxp->fMaxComponentContours = parse_be16(p);
82 maxp->fMaxZones = parse_be16(p);
83 maxp->fMaxTwilightPoints = parse_be16(p);
84 maxp->fMaxStorage = parse_be16(p);
85 maxp->fMaxFunctionDefs = parse_be16(p);
86 maxp->fMaxInstructionDefs = parse_be16(p);
87 maxp->fMaxStackElements = parse_be16(p);
88 maxp->fMaxSizeOfInstructions = parse_be16(p);
89 maxp->fMaxComponentElements = parse_be16(p);
90 maxp->fMaxComponentDepth = parse_be16(p);