Fix T95778, the macOS minimum versions have been increased for Metal.

This commit is contained in:
Thomas Dinges 2022-02-14 17:47:35 +01:00
parent 56407432a6
commit a5edff4b73
Notes: blender-bot 2023-02-14 11:34:30 +01:00
Referenced by issue #95778, New blender 3.1 beta doesn't recognize my Metal GPU
1 changed files with 2 additions and 1 deletions

View File

@ -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: