• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1""" TSI{0,1,2,3,5} are private tables used by Microsoft Visual TrueType (VTT)
2tool to store its hinting source data.
3
4TSI3 contains the text of the glyph programs in the form of 'VTTTalk' code.
5"""
6
7from fontTools import ttLib
8
9superclass = ttLib.getTableClass("TSI1")
10
11
12class table_T_S_I__3(superclass):
13    extras = {
14        0xFFFA: "reserved0",
15        0xFFFB: "reserved1",
16        0xFFFC: "reserved2",
17        0xFFFD: "reserved3",
18    }
19
20    indextable = "TSI2"
21