]>
Commit | Line | Data |
---|---|---|
b75a7d8f | 1 | /* |
b75a7d8f | 2 | * |
374ca955 | 3 | * (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved |
b75a7d8f A |
4 | * |
5 | */ | |
6 | ||
7 | #include "LETypes.h" | |
8 | #include "LEGlyphFilter.h" | |
9 | #include "OpenTypeTables.h" | |
10 | #include "Lookups.h" | |
11 | #include "GlyphDefinitionTables.h" | |
12 | #include "GlyphPositionAdjustments.h" | |
13 | #include "GlyphSubstitutionTables.h" | |
14 | #include "GlyphSubstLookupProc.h" | |
15 | #include "ScriptAndLanguage.h" | |
374ca955 | 16 | #include "LEGlyphStorage.h" |
b75a7d8f A |
17 | #include "LESwaps.h" |
18 | ||
19 | U_NAMESPACE_BEGIN | |
20 | ||
374ca955 | 21 | le_int32 GlyphSubstitutionTableHeader::process(LEGlyphStorage &glyphStorage, le_bool rightToLeft, LETag scriptTag, LETag languageTag, |
b75a7d8f A |
22 | const GlyphDefinitionTableHeader *glyphDefinitionTableHeader, |
23 | const LEGlyphFilter *filter, const LETag *featureOrder) const | |
24 | { | |
25 | GlyphSubstitutionLookupProcessor processor(this, scriptTag, languageTag, filter, featureOrder); | |
26 | ||
374ca955 | 27 | return processor.process(glyphStorage, NULL, rightToLeft, glyphDefinitionTableHeader, NULL); |
b75a7d8f A |
28 | } |
29 | ||
30 | U_NAMESPACE_END |