Home | History | Annotate | Download | only in tables
      1 """ TSI{0,1,2,3,5} are private tables used by Microsoft Visual TrueType (VTT)
      2 tool to store its hinting source data.
      3 
      4 TSI3 contains the text of the glyph programs in the form of 'VTTTalk' code.
      5 """
      6 from __future__ import print_function, division, absolute_import
      7 from fontTools.misc.py23 import *
      8 from fontTools import ttLib
      9 
     10 superclass = ttLib.getTableClass("TSI1")
     11 
     12 class table_T_S_I__3(superclass):
     13 
     14 	extras = {0xfffa: "reserved0", 0xfffb: "reserved1", 0xfffc: "reserved2", 0xfffd: "reserved3"}
     15 
     16 	indextable = "TSI2"
     17