Cycles: add text explaining minimum requirements for Metal when no device found

This commit is contained in:
Brecht Van Lommel 2021-12-13 15:30:59 +01:00
parent 3f96555123
commit 49802af7cd
1 changed files with 2 additions and 0 deletions

View File

@ -1473,6 +1473,8 @@ class CyclesPreferences(bpy.types.AddonPreferences):
col.label(text="Requires discrete AMD GPU with RDNA architecture", icon='BLANK1')
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')
return
for device in devices: