Home | History | Annotate | Download | only in tables

Lines Matching refs:glyphName

16 	ttFont['COLR'][<glyphName>] will return the color layers for any glyph
17 ttFont['COLR'][<glyphName>] = <value> will set the color layers for any glyph.
59 for glyphName in glyphNames:
61 gid = ttFont.getGlyphID(glyphName)
63 assert 0, "COLR table contains a glyph name not in ttFont.getGlyphNames(): " + str(glyphName)
64 ordered.append([gid, glyphName, self.ColorLayers[glyphName]])
69 for (gid, glyphName, layers) in ordered:
85 for glyphName in glyphNames:
87 gid = ttFont.getGlyphID(glyphName)
89 assert 0, "COLR table contains a glyph name not in ttFont.getGlyphNames(): " + str(glyphName)
90 ordered.append([gid, glyphName, self.ColorLayers[glyphName]])
105 glyphName = attrs["name"]
116 operator.setitem(self, glyphName, layers)