1c9f0bf8a3
X-SVN-Rev: 3021
29 lines
1.0 KiB
C++
29 lines
1.0 KiB
C++
/*
|
|
* @(#)GlyphPositioningTables.cpp 1.7 00/03/15
|
|
*
|
|
* (C) Copyright IBM Corp. 1998, 1999, 2000 - 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 "GlyphPositioningLookupProcessor.h"
|
|
|
|
void GlyphPositioningTableHeader::process(LEGlyphID *glyphs, GlyphPositionAdjustment *glyphPositionAdjustments,
|
|
const LETag **glyphTags, le_int32 glyphCount, le_bool rightToLeft,
|
|
LETag scriptTag, LETag languageTag,
|
|
GlyphDefinitionTableHeader *glyphDefinitionTableHeader,
|
|
LEFontInstance *fontInstance)
|
|
{
|
|
GlyphPositioningLookupProcessor processor(this, scriptTag, languageTag);
|
|
|
|
processor.process(glyphs, glyphPositionAdjustments, glyphTags, glyphCount, rightToLeft,
|
|
glyphDefinitionTableHeader, fontInstance);
|
|
}
|
|
|