summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/BASE.h
blob: 7d780f951eeb934fab10d3ccf7d3b0f6d6c156b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#ifndef CARYLL_INCLUDE_TABLE_BASE_H
#define CARYLL_INCLUDE_TABLE_BASE_H

#include "otl.h"

typedef struct {
	uint32_t tag;
	pos_t coordinate;
} otl_BaseValue;

typedef struct {
	uint32_t tag;
	uint32_t defaultBaselineTag;
	tableid_t baseValuesCount;
	OWNING otl_BaseValue *baseValues;
} otl_BaseScriptEntry;

typedef struct {
	tableid_t scriptCount;
	otl_BaseScriptEntry *entries;
} otl_BaseAxis;

typedef struct {
	otl_BaseAxis *horizontal;
	otl_BaseAxis *vertical;
} table_BASE;

extern caryll_RefElementInterface(table_BASE) table_iBASE;

#endif