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

#include "table-common.h"

#include "vhea.h"
#include "maxp.h"

typedef struct {
	length_t advanceHeight;
	pos_t tsb;
} vertical_metric;

typedef struct {
	OWNING vertical_metric *metrics;
	pos_t *topSideBearing;
} table_vmtx;

extern caryll_RefElementInterface(table_vmtx) table_iVmtx;

#endif