• 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
4TSI2 is the index table containing the lengths and offsets for the glyph
5programs that are contained in the TSI3 table. It uses the same format as
6the TSI0 table.
7"""
8from __future__ import print_function, division, absolute_import
9from fontTools.misc.py23 import *
10from fontTools import ttLib
11
12superclass = ttLib.getTableClass("TSI0")
13
14class table_T_S_I__2(superclass):
15
16	dependencies = ["TSI3"]
17