blob: 4ef5390d1dff5b8aa635b8acd5b5e86e335e33b5 [file] [edit]
#![parse_module(read_fonts::tables::hdmx)]
/// The [Horizontal Device Metrics](https://learn.microsoft.com/en-us/typography/opentype/spec/hdmx) table.
#[read_args(num_glyphs: u16)]
#[tag = "hdmx"]
table Hdmx {
/// Table version number (set to 0).
version: u16,
/// Number of device records.
num_records: u16,
/// Size of device record, 32-bit aligned.
size_device_record: u32,
/// Array of device records.
#[count($num_records)]
#[read_with($num_glyphs, $size_device_record)]
records: ComputedArray<DeviceRecord<'a>>,
}