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
path: root/intern
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2022-02-14 19:47:35 +0300
committerThomas Dinges <blender@dingto.org>2022-02-14 19:47:35 +0300
commita5edff4b73ba74155dcad93103e2fef2c59df67f (patch)
tree6921908ac4127012489f3fddadc863edbc49da5b /intern
parent56407432a6aae92dc272f7c8b37fc664e8d2108d (diff)
Fix T95778, the macOS minimum versions have been increased for Metal.
Diffstat (limited to 'intern')
-rw-r--r--intern/cycles/blender/addon/properties.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/intern/cycles/blender/addon/properties.py b/intern/cycles/blender/addon/properties.py
index 01e73d7ed03..ef686fc0c70 100644
--- a/intern/cycles/blender/addon/properties.py
+++ b/intern/cycles/blender/addon/properties.py
@@ -1498,7 +1498,8 @@ class CyclesPreferences(bpy.types.AddonPreferences):
if sys.platform[:3] == "win":
col.label(text="and AMD Radeon Pro 21.Q4 driver or newer", icon='BLANK1')
elif device_type == 'METAL':
- col.label(text="Requires Apple Silicon and macOS 12.0 or newer", icon='BLANK1')
+ col.label(text="Requires Apple Silicon with macOS 12.2 or newer", icon='BLANK1')
+ col.label(text="or AMD with macOS 12.3 or newer", icon='BLANK1')
return
for device in devices: