mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 05:25:05 +00:00
[subset] OTS doesn't allow ligature attachment offset to be 0
This commit is contained in:
parent
0cbbed57e3
commit
2d001a0adc
7 changed files with 13 additions and 3 deletions
|
@ -68,15 +68,14 @@ struct AnchorMatrix
|
|||
if (unlikely (!c->serializer->extend_min (out))) return_trace (false);
|
||||
|
||||
out->rows = num_rows;
|
||||
bool ret = false;
|
||||
for (const unsigned i : index_iter)
|
||||
{
|
||||
auto *offset = c->serializer->embed (matrixZ[i]);
|
||||
if (!offset) return_trace (false);
|
||||
ret |= offset->serialize_subset (c, matrixZ[i], this);
|
||||
offset->serialize_subset (c, matrixZ[i], this);
|
||||
}
|
||||
|
||||
return_trace (ret);
|
||||
return_trace (true);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
|
@ -73,6 +73,7 @@ EXTRA_DIST += \
|
|||
expected/collect_name_ids \
|
||||
expected/instantiate_colrv1 \
|
||||
expected/instantiate_cff2_update_metrics \
|
||||
expected/layout.empty_ligature_offset \
|
||||
fonts \
|
||||
profiles \
|
||||
$(NULL)
|
||||
|
|
|
@ -64,6 +64,7 @@ TESTS = \
|
|||
tests/collect_name_ids.tests \
|
||||
tests/instantiate_colrv1.tests \
|
||||
tests/instantiate_cff2_update_metrics.tests \
|
||||
tests/layout.empty_ligature_offset.tests \
|
||||
$(NULL)
|
||||
|
||||
# TODO: re-enable once colrv1 subsetting is stabilized.
|
||||
|
|
Binary file not shown.
BIN
test/subset/data/fonts/AnekBangla-latin-subset.ttf
Normal file
BIN
test/subset/data/fonts/AnekBangla-latin-subset.ttf
Normal file
Binary file not shown.
|
@ -0,0 +1,8 @@
|
|||
FONTS:
|
||||
AnekBangla-latin-subset.ttf
|
||||
|
||||
PROFILES:
|
||||
default.txt
|
||||
|
||||
SUBSETS:
|
||||
*
|
|
@ -66,6 +66,7 @@ tests = [
|
|||
'collect_name_ids',
|
||||
'instantiate_colrv1',
|
||||
'instantiate_cff2_update_metrics',
|
||||
'layout.empty_ligature_offset',
|
||||
]
|
||||
|
||||
if get_option('experimental_api')
|
||||
|
|
Loading…
Add table
Reference in a new issue