Please enable JavaScript to use RhodeCode Enterprise
Commit Description:
merge
Commit Description:
merge
import r from 'restructure' ;
let Axis = new r . Struct ({
axisTag : new r . String ( 4 ),
minValue : r . fixed32 ,
defaultValue : r . fixed32 ,
maxValue : r . fixed32 ,
flags : r . uint16 ,
nameID : r . uint16 ,
name : t => t . parent . parent . name . records . fontFeatures [ t . nameID ]
});
let Instance = new r . Struct ({
nameID : r . uint16 ,
name : t => t . parent . parent . name . records . fontFeatures [ t . nameID ],
flags : r . uint16 ,
coord : new r . Array ( r . fixed32 , t => t . parent . axisCount ),
postscriptNameID : new r . Optional ( r . uint16 , t => t . parent . instanceSize - t . _currentOffset > 0 )
});
export default new r . Struct ({
version : r . fixed32 ,
offsetToData : r . uint16 ,
countSizePairs : r . uint16 ,
axisCount : r . uint16 ,
axisSize : r . uint16 ,
instanceCount : r . uint16 ,
instanceSize : r . uint16 ,
axis : new r . Array ( Axis , 'axisCount' ),
instance : new r . Array ( Instance , 'instanceCount' )
});
Site-wide shortcuts
/
Use quick search box
g h
Goto home page
g g
Goto my private gists page
g G
Goto my public gists page
n r
New repository page
n g
New gist page
Repositories
g s
Goto summary page
g c
Goto changelog page
g f
Goto files page
g F
Goto files page with file search activated
g p
Goto pull requests page
g o
Goto repository settings
g O
Goto repository permissions settings