summaryrefslogtreecommitdiff
path: root/libraries/agg/patches/0015-Ensure-first-value-in-the-gamma-table-is-always-zero.patch
diff options
context:
space:
mode:
authorMatteo Bernardini <ponce@slackbuilds.org>2018-06-27 16:15:17 +0200
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2018-06-30 07:00:19 +0700
commit5748ceeae42d2115749daf3415fb2b50989b05fb (patch)
treed9572be22bc8c4a9cf776760d2e70bd19dace2f0 /libraries/agg/patches/0015-Ensure-first-value-in-the-gamma-table-is-always-zero.patch
parent9fed72d60d5d754fe3ce5c80f57d60a2d6520665 (diff)
downloadslackbuilds-5748ceeae42d2115749daf3415fb2b50989b05fb.tar.gz
libraries/agg: Updated for version r127.
Switch to the debian-maintained version Signed-off-by: Matteo Bernardini <ponce@slackbuilds.org>
Diffstat (limited to 'libraries/agg/patches/0015-Ensure-first-value-in-the-gamma-table-is-always-zero.patch')
-rw-r--r--libraries/agg/patches/0015-Ensure-first-value-in-the-gamma-table-is-always-zero.patch24
1 files changed, 0 insertions, 24 deletions
diff --git a/libraries/agg/patches/0015-Ensure-first-value-in-the-gamma-table-is-always-zero.patch b/libraries/agg/patches/0015-Ensure-first-value-in-the-gamma-table-is-always-zero.patch
deleted file mode 100644
index 6214bd62e3..0000000000
--- a/libraries/agg/patches/0015-Ensure-first-value-in-the-gamma-table-is-always-zero.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From ca818d4dcd428c5560fc3c341fbaf427a7485e32 Mon Sep 17 00:00:00 2001
-From: Tom Hughes <tom@compton.nu>
-Date: Sat, 22 Jun 2013 12:34:37 +0100
-Subject: [PATCH 15/15] Ensure first value in the gamma table is always zero
-
----
- include/agg_gamma_functions.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/include/agg_gamma_functions.h b/include/agg_gamma_functions.h
-index beb0c04..b8eda52 100644
---- a/include/agg_gamma_functions.h
-+++ b/include/agg_gamma_functions.h
-@@ -49,6 +49,7 @@ namespace agg
-
- double operator() (double x) const
- {
-+ if (x == 0.0) return 0.0;
- return pow(x, m_gamma);
- }
-
---
-1.8.1.4
-