Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Vincent Wei
harfbuzz
Commits
52a00cd8
Commit
52a00cd8
authored
6 years ago
by
Behdad Esfahbod
Browse files
Options
Download
Email Patches
Plain Diff
[aat] Implement 'aalt' mapping
Fixes
https://github.com/harfbuzz/harfbuzz/issues/1160
parent
6e3ea269
master
arabic-table-x
bot-check
coverity_scan
decltype
inttype-constructors
iter
metrics
typename-outside-template
var-subset
2.3.1
2.3.0
2.2.0
2.1.3
2.1.2
2.1.1
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/hb-aat-map.cc
+8
-0
src/hb-aat-map.cc
with
8 additions
and
0 deletions
+8
-0
src/hb-aat-map.cc
View file @
52a00cd8
...
...
@@ -34,6 +34,14 @@
void
hb_aat_map_builder_t
::
add_feature
(
hb_tag_t
tag
,
unsigned
int
value
)
{
if
(
tag
==
HB_TAG
(
'a'
,
'a'
,
'l'
,
't'
))
{
feature_info_t
*
info
=
features
.
push
();
info
->
type
=
17
/*kCharacterAlternativesType*/
;
info
->
setting
=
value
;
return
;
}
const
hb_aat_feature_mapping_t
*
mapping
=
hb_aat_layout_find_feature_mapping
(
tag
);
if
(
!
mapping
)
return
;
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Projects
Groups
Snippets
Help