We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As per https://docs.microsoft.com/en-us/typography/opentype/spec/gsub#lookuptype-7-extension-substitution the lookup type 7 table is "actually not this, but a different lookup table", where the extensionLookupType field tells us the class we'll need to parse the table data as, and extensionOffset tells us where that table data starts.
extensionLookupType
extensionOffset
This means calling buildSubtable(extensionLookupType, p where p is our parser, already pegged to the start of the substitution's byte offset.
buildSubtable(extensionLookupType, p
The text was updated successfully, but these errors were encountered:
Pomax
No branches or pull requests
As per https://docs.microsoft.com/en-us/typography/opentype/spec/gsub#lookuptype-7-extension-substitution the lookup type 7 table is "actually not this, but a different lookup table", where the
extensionLookupType
field tells us the class we'll need to parse the table data as, andextensionOffset
tells us where that table data starts.This means calling
buildSubtable(extensionLookupType, p
where p is our parser, already pegged to the start of the substitution's byte offset.The text was updated successfully, but these errors were encountered: