summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2019-06-06 23:20:33 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2019-06-06 23:21:44 +0200
commitfce2bae92fc72196e82a236c2ae3d290910c23b6 (patch)
tree1424bb0a459e7d5f5283ab7dc41de9e8d1f3a0bd /media-gfx/blender/files
parentsys-cluster/kubeadm: Version bump to 1.13.7 (diff)
downloadgentoo-fce2bae92fc72196e82a236c2ae3d290910c23b6.tar.gz
gentoo-fce2bae92fc72196e82a236c2ae3d290910c23b6.tar.bz2
gentoo-fce2bae92fc72196e82a236c2ae3d290910c23b6.zip
media-gfx/blender: Drop 2.79 and 2.79-r1
No one explained why keep it, so drop it. Closes: https://bugs.gentoo.org/606406 Closes: https://bugs.gentoo.org/659498 Package-Manager: Portage-2.3.67, Repoman-2.3.14 Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-gfx/blender/files')
-rw-r--r--media-gfx/blender/files/blender-2.79-fix-build-with-OSL-1.9.x.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/media-gfx/blender/files/blender-2.79-fix-build-with-OSL-1.9.x.patch b/media-gfx/blender/files/blender-2.79-fix-build-with-OSL-1.9.x.patch
deleted file mode 100644
index 6b22f9335fd7..000000000000
--- a/media-gfx/blender/files/blender-2.79-fix-build-with-OSL-1.9.x.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From d089875c4c753f084e02849462ec1bd6f785eadf Mon Sep 17 00:00:00 2001
-From: Brecht Van Lommel <brechtvanlommel@gmail.com>
-Date: Sat, 18 Nov 2017 06:11:17 +0100
-Subject: [PATCH] Fix build with OSL 1.9.x, automatically aligns to 16 bytes
- now.
-
----
- intern/cycles/kernel/osl/osl_closures.cpp | 4 ++++
- 1 file changed, 4 insertions(+)
-
-diff --git a/intern/cycles/kernel/osl/osl_closures.cpp b/intern/cycles/kernel/osl/osl_closures.cpp
-index e3e85705ebc..597d25e9f30 100644
---- a/intern/cycles/kernel/osl/osl_closures.cpp
-+++ b/intern/cycles/kernel/osl/osl_closures.cpp
-@@ -232,7 +232,11 @@ static void register_closure(OSL::ShadingSystem *ss, const char *name, int id, O
- /* optimization: it's possible to not use a prepare function at all and
- * only initialize the actual class when accessing the closure component
- * data, but then we need to map the id to the class somehow */
-+#if OSL_LIBRARY_VERSION_CODE >= 10900
-+ ss->register_closure(name, id, params, prepare, NULL);
-+#else
- ss->register_closure(name, id, params, prepare, NULL, 16);
-+#endif
- }
-
- void OSLShader::register_closures(OSLShadingSystem *ss_)