Skip to content

Commit 2afb95d

Browse files
authored
yet-another-rewrite of the shaping engine (#60)
1 parent 0c39230 commit 2afb95d

File tree

6 files changed

+606
-481
lines changed

6 files changed

+606
-481
lines changed

DESCRIPTION

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ Suggests:
2727
grDevices,
2828
grid,
2929
knitr,
30-
rmarkdown
30+
rmarkdown,
31+
testthat (>= 3.0.0)
3132
LinkingTo:
3233
cpp11 (>= 0.2.1),
3334
systemfonts (>= 1.0.0)
@@ -38,3 +39,4 @@ Roxygen: list(markdown = TRUE)
3839
RoxygenNote: 7.3.2
3940
SystemRequirements: freetype2, harfbuzz, fribidi
4041
Config/build/compilation-database: true
42+
Config/testthat/edition: 3

src/string_metrics.cpp

-1
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,6 @@ list get_string_shape_c(strings string, integers id, strings path, integers inde
210210
}
211211
int n_glyphs = shaper.glyph_id.size();
212212
for (int j = 0; j < n_glyphs; j++) {
213-
if (shaper.must_break[j]) continue; // Don't add any linebreak chars as they often map to null glyph
214213
glyph.push_back((int) shaper.glyph_cluster[j] + 1);
215214
glyph_id.push_back((int) shaper.glyph_id[j]);
216215
metric_id.push_back(pen_x.size() + 1);

0 commit comments

Comments
 (0)