61607c2773
X-SVN-Rev: 38848
50 lines
953 B
C
50 lines
953 B
C
// Copyright (C) 2016 and later: Unicode, Inc. and others.
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
|
/*
|
|
*
|
|
* (C) Copyright IBM Corp. 1998-2013 - All Rights Reserved
|
|
*
|
|
*/
|
|
|
|
#ifndef __COVERAGETABLES_H
|
|
#define __COVERAGETABLES_H
|
|
|
|
/**
|
|
* \file
|
|
* \internal
|
|
*/
|
|
|
|
#include "LETypes.h"
|
|
#include "OpenTypeTables.h"
|
|
|
|
U_NAMESPACE_BEGIN
|
|
|
|
struct CoverageTable
|
|
{
|
|
le_uint16 coverageFormat;
|
|
|
|
le_int32 getGlyphCoverage(LEGlyphID glyphID) const;
|
|
};
|
|
|
|
struct CoverageFormat1Table : CoverageTable
|
|
{
|
|
le_uint16 glyphCount;
|
|
TTGlyphID glyphArray[ANY_NUMBER];
|
|
|
|
le_int32 getGlyphCoverage(LEGlyphID glyphID) const;
|
|
};
|
|
LE_VAR_ARRAY(CoverageFormat1Table, glyphArray)
|
|
|
|
|
|
struct CoverageFormat2Table : CoverageTable
|
|
{
|
|
le_uint16 rangeCount;
|
|
GlyphRangeRecord rangeRecordArray[ANY_NUMBER];
|
|
|
|
le_int32 getGlyphCoverage(LEGlyphID glyphID) const;
|
|
};
|
|
LE_VAR_ARRAY(CoverageFormat2Table, rangeRecordArray)
|
|
|
|
U_NAMESPACE_END
|
|
#endif
|