https://github.com/videolan/vlc
Revision 66e287ea014eef76dcbd224a84322ab136c1e291 authored by Salah-Eddin Shaban on 21 May 2021, 15:15:07 UTC, committed by Jean-Baptiste Kempf on 26 May 2021, 08:46:30 UTC
FT_Glyph_Stroke is more tolerant of font files that do not follow
contour orientation conventions, like Helvetica Neue.
It also creates unfilled outline glyphs that can be more efficiently
blended.

Fixes #21043

(cherry picked from commit 074b4f3c4adf21b574c4a5127bac18cf7e94d821)
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
1 parent 9f7be9f
Raw File
Tip revision: 66e287ea014eef76dcbd224a84322ab136c1e291 authored by Salah-Eddin Shaban on 21 May 2021, 15:15:07 UTC
Freetype: use FT_Glyph_Stroke to create outlines
Tip revision: 66e287e
make-alias
#! /bin/sh
# Interface alias build script for VLC
# Copyright © 2007 Rémi Denis-Courmont.

OUT="$1"
IFACE="$2"

cat > "$OUT.tmp" << EOF
#! /bin/sh
exec $bindir/`echo "$program_prefix"vlc"$program_suffix" | sed -e "$transform"` -I "$IFACE" "\$@"
EOF

chmod +x "$OUT.tmp"
mv -f -- "$OUT.tmp" "$OUT"
back to top