summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/VORG.h
blob: 065ee3da5dc34d24242c9ef2f9d5a72cfd148a6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef CARYLL_INCLUDE_TABLE_VORG_H
#define CARYLL_INCLUDE_TABLE_VORG_H

#include "table-common.h"

typedef struct {
	glyphid_t gid;
	int16_t verticalOrigin;
} VORG_entry;

typedef struct {
	glyphid_t numVertOriginYMetrics;
	pos_t defaultVerticalOrigin;
	OWNING VORG_entry *entries;
} table_VORG;

extern caryll_RefElementInterface(table_VORG) table_iVORG;

#endif