blob: 71637a0eeb11f12875d2939a47da4138c4799b0b [file] [log] [blame]
/*
*
* (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved
*
*/
#include "LETypes.h"
#include "OpenTypeTables.h"
#include "HebrewShaping.h"
#include "LEGlyphStorage.h"
U_NAMESPACE_BEGIN
const LETag ligaFeatureTag = 0x6C696761; // 'liga'
const LETag emptyTag = 0x00000000; // ''
const LETag hebrewTags[] =
{
ligaFeatureTag, emptyTag
};
void HebrewShaping::shape(const LEUnicode * /*chars*/, le_int32 /*offset*/, le_int32 charCount, le_int32 /*charMax*/,
le_bool rightToLeft, LEGlyphStorage &glyphStorage)
{
le_int32 count, out = 0, dir = 1;
LEErrorCode success = LE_NO_ERROR;
if (rightToLeft) {
out = charCount - 1;
dir = -1;
}
for (count = 0; count < charCount; count += 1, out += dir) {
glyphStorage.setAuxData(out, (void *) hebrewTags, success);
}
}
U_NAMESPACE_END