aboutsummaryrefslogtreecommitdiff
path: root/ports/libass/ConstantValues.patch
diff options
context:
space:
mode:
authorwangqr <wangqr@users.noreply.github.com>2021-01-27 07:07:05 +0800
committerGitHub <noreply@github.com>2021-01-26 15:07:05 -0800
commit786d8f1261b0cb91037d338c1f546396c41af772 (patch)
treef4a5be3a3e433fca18c7f8a3368813c0144331d8 /ports/libass/ConstantValues.patch
parent795588570aa5fb2d4f33a13648b8b602e9d4a52c (diff)
downloadvcpkg-786d8f1261b0cb91037d338c1f546396c41af772.tar.gz
vcpkg-786d8f1261b0cb91037d338c1f546396c41af772.zip
[libass] Update to 0.15.0 (#15213)
* [libass] Update to 0.15.0 * [libass] Add vcpkg_fixup_pkgconfig() * [libass] Add to versions file
Diffstat (limited to 'ports/libass/ConstantValues.patch')
-rw-r--r--ports/libass/ConstantValues.patch22
1 files changed, 0 insertions, 22 deletions
diff --git a/ports/libass/ConstantValues.patch b/ports/libass/ConstantValues.patch
deleted file mode 100644
index e666b8466..000000000
--- a/ports/libass/ConstantValues.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-diff --git a/libass/ass_outline.c b/libass/ass_outline.c
-index ae5c06a..2173508 100644
---- a/libass/ass_outline.c
-+++ b/libass/ass_outline.c
-@@ -613,7 +613,7 @@ static bool draw_arc(StrokerState *str, ASS_Vector pt,
- ASS_DVector normal0, ASS_DVector normal1, double c, int dir)
- {
- enum { max_subdiv = 15 };
-- double mul[max_subdiv + 1];
-+ double mul[16];
-
- ASS_DVector center;
- bool small_angle = true;
-@@ -649,7 +649,7 @@ static bool draw_arc(StrokerState *str, ASS_Vector pt,
- static bool draw_circle(StrokerState *str, ASS_Vector pt, int dir)
- {
- enum { max_subdiv = 15 };
-- double mul[max_subdiv + 1], c = 0;
-+ double mul[16], c = 0;
-
- int pos = max_subdiv;
- while (c < str->split_cos && pos) {