mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Remove unused is_missing flag
This commit is contained in:
parent
fa85d5f312
commit
d3d1d15615
2 changed files with 18 additions and 38 deletions
|
@ -453,7 +453,6 @@ impl Shaper {
|
|||
let data = GlyphData::new(space_glyph_id,
|
||||
advance,
|
||||
Default::default(),
|
||||
false,
|
||||
true,
|
||||
true);
|
||||
glyphs.add_glyph_for_char_index(char_idx, character, &data);
|
||||
|
@ -463,7 +462,6 @@ impl Shaper {
|
|||
let data = GlyphData::new(shape.codepoint,
|
||||
advance,
|
||||
shape.offset,
|
||||
false,
|
||||
true,
|
||||
true);
|
||||
glyphs.add_glyph_for_char_index(char_idx, character, &data);
|
||||
|
@ -477,7 +475,6 @@ impl Shaper {
|
|||
datas.push(GlyphData::new(shape.codepoint,
|
||||
shape.advance,
|
||||
shape.offset,
|
||||
false, // not missing
|
||||
true, // treat as cluster start
|
||||
glyph_i > glyph_span.begin()));
|
||||
// all but first are ligature continuations
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue