85efdc753e
X-SVN-Rev: 7844
32 lines
1.1 KiB
C++
32 lines
1.1 KiB
C++
/*
|
|
* @(#)GlyphPositioningTables.cpp 1.7 00/03/15
|
|
*
|
|
* (C) Copyright IBM Corp. 1998, 1999, 2000, 2001 - All Rights Reserved
|
|
*
|
|
*/
|
|
|
|
#include "LETypes.h"
|
|
#include "LEFontInstance.h"
|
|
#include "OpenTypeTables.h"
|
|
#include "Lookups.h"
|
|
#include "GlyphDefinitionTables.h"
|
|
#include "GlyphPositionAdjustments.h"
|
|
#include "GlyphPositioningTables.h"
|
|
#include "GlyphPosnLookupProc.h"
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
void GlyphPositioningTableHeader::process(LEGlyphID *glyphs, GlyphPositionAdjustment *glyphPositionAdjustments,
|
|
const LETag **glyphTags, le_int32 glyphCount, le_bool rightToLeft,
|
|
LETag scriptTag, LETag languageTag,
|
|
const GlyphDefinitionTableHeader *glyphDefinitionTableHeader,
|
|
const LEFontInstance *fontInstance, const LETag *featureOrder) const
|
|
{
|
|
GlyphPositioningLookupProcessor processor(this, scriptTag, languageTag, featureOrder);
|
|
|
|
processor.process(glyphs, glyphPositionAdjustments, glyphTags, glyphCount, rightToLeft,
|
|
glyphDefinitionTableHeader, fontInstance);
|
|
}
|
|
|
|
U_NAMESPACE_END
|