Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'intern/cycles/util/util_openimagedenoise.h')
-rw-r--r--intern/cycles/util/util_openimagedenoise.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/intern/cycles/util/util_openimagedenoise.h b/intern/cycles/util/util_openimagedenoise.h
index aafa69cb530..898c634141e 100644
--- a/intern/cycles/util/util_openimagedenoise.h
+++ b/intern/cycles/util/util_openimagedenoise.h
@@ -28,7 +28,12 @@ CCL_NAMESPACE_BEGIN
static inline bool openimagedenoise_supported()
{
#ifdef WITH_OPENIMAGEDENOISE
+# ifdef __APPLE__
+ /* Always supported through Accelerate framework BNNS. */
+ return true;
+# else
return system_cpu_support_sse41();
+# endif
#else
return false;
#endif