We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c12525 commit 2f82fbdCopy full SHA for 2f82fbd
src/gsub.rs
@@ -23,8 +23,8 @@ use crate::layout::{
23
};
24
use crate::scripts::{self, ScriptType};
25
use crate::tables::variable_fonts::Tuple;
26
-use crate::tag;
27
use crate::unicode::VariationSelector;
+use crate::{tag, GlyphId};
28
29
const SUBST_RECURSION_LIMIT: usize = 2;
30
@@ -123,7 +123,7 @@ impl Ligature {
123
#[derive(Clone, Debug)]
124
pub struct RawGlyph<T> {
125
pub unicodes: TinyVec<[char; 1]>,
126
- pub glyph_index: u16,
+ pub glyph_index: GlyphId,
127
pub liga_component_pos: u16,
128
pub glyph_origin: GlyphOrigin,
129
pub flags: RawGlyphFlags,
0 commit comments