Lines Matching refs:fontChar
32974 function buildPath(fontChar) {
32975 if (font.renderer.hasBuiltPath(fontChar)) {
32979 …j', ["".concat(font.loadedName, "_path_").concat(fontChar), 'FontPath', font.renderer.getPathJs(fo…
32989 buildPath(glyph.fontChar);
32992 if (accent && accent.fontChar) {
32993 buildPath(accent.fontChar);
34855 function Glyph(fontChar, unicode, accent, width, vmetric, operatorListId, isSpace, isInFont) {
34856 this.fontChar = fontChar;
34866 …Glyph.prototype.matchesForCache = function (fontChar, unicode, accent, width, vmetric, operatorLis…
34867 …return this.fontChar === fontChar && this.unicode === unicode && this.accent === accent && this.wi…
37318 fontChar: String.fromCodePoint(seac.accentFontCharCode), property
37323 var fontChar = typeof fontCharCode === 'number' ? String.fromCodePoint(fontCharCode) : '';
37326 …if (!glyph || !glyph.matchesForCache(fontChar, unicode, accent, width, vmetric, operatorListId, is…
37327 … glyph = new Glyph(fontChar, unicode, accent, width, vmetric, operatorListId, isSpace, isInFont);