summaryrefslogtreecommitdiff
path: root/Build/source/libs/icu/icu-xetex/layout/CoverageTables.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/icu/icu-xetex/layout/CoverageTables.h')
-rw-r--r--Build/source/libs/icu/icu-xetex/layout/CoverageTables.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/Build/source/libs/icu/icu-xetex/layout/CoverageTables.h b/Build/source/libs/icu/icu-xetex/layout/CoverageTables.h
new file mode 100644
index 00000000000..5e9dbaa15a7
--- /dev/null
+++ b/Build/source/libs/icu/icu-xetex/layout/CoverageTables.h
@@ -0,0 +1,44 @@
+/*
+ *
+ * (C) Copyright IBM Corp. 1998-2004 - 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;
+};
+
+struct CoverageFormat2Table : CoverageTable
+{
+ le_uint16 rangeCount;
+ GlyphRangeRecord rangeRecordArray[ANY_NUMBER];
+
+ le_int32 getGlyphCoverage(LEGlyphID glyphID) const;
+};
+
+U_NAMESPACE_END
+#endif