summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/mfluadir/otfcc/include/otfcc/table/hmtx.h
blob: c9f3cc45a67e9e2119acf114ae8b798913c309f6 (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_HMTX_H
#define CARYLL_INCLUDE_TABLE_HMTX_H

#include "table-common.h"

#include "hhea.h"
#include "maxp.h"

typedef struct {
	length_t advanceWidth;
	pos_t lsb;
} horizontal_metric;

typedef struct {
	// Horizontal metrics
	OWNING horizontal_metric *metrics;
	OWNING pos_t *leftSideBearing;
} table_hmtx;
extern caryll_RefElementInterface(table_hmtx) table_iHmtx;

#endif