]>
Commit | Line | Data |
---|---|---|
b75a7d8f A |
1 | /* |
2 | * @(#)GlyphPositioningTables.cpp 1.7 00/03/15 | |
3 | * | |
4 | * (C) Copyright IBM Corp. 1998, 1999, 2000, 2001 - All Rights Reserved | |
5 | * | |
6 | */ | |
7 | ||
8 | #include "LETypes.h" | |
9 | #include "LEFontInstance.h" | |
10 | #include "OpenTypeTables.h" | |
11 | #include "Lookups.h" | |
12 | #include "GlyphDefinitionTables.h" | |
13 | #include "GlyphPositionAdjustments.h" | |
14 | #include "GlyphPositioningTables.h" | |
15 | #include "GlyphPosnLookupProc.h" | |
16 | ||
17 | U_NAMESPACE_BEGIN | |
18 | ||
19 | void GlyphPositioningTableHeader::process(LEGlyphID *glyphs, GlyphPositionAdjustment *glyphPositionAdjustments, | |
20 | const LETag **glyphTags, le_int32 glyphCount, le_bool rightToLeft, | |
21 | LETag scriptTag, LETag languageTag, | |
22 | const GlyphDefinitionTableHeader *glyphDefinitionTableHeader, | |
23 | const LEFontInstance *fontInstance, const LETag *featureOrder) const | |
24 | { | |
25 | GlyphPositioningLookupProcessor processor(this, scriptTag, languageTag, featureOrder); | |
26 | ||
27 | processor.process(glyphs, glyphPositionAdjustments, glyphTags, glyphCount, rightToLeft, | |
28 | glyphDefinitionTableHeader, fontInstance); | |
29 | } | |
30 | ||
31 | U_NAMESPACE_END |