Cycles: add AMD driver version info for HIP on Windows

This commit is contained in:
Brecht Van Lommel 2021-11-09 15:38:27 +01:00
parent 5f44298280
commit 8eff3b5fe0
1 changed files with 2 additions and 3 deletions

View File

@ -1420,9 +1420,8 @@ class CyclesPreferences(bpy.types.AddonPreferences):
elif device_type == 'HIP':
import sys
col.label(text="Requires discrete AMD GPU with RDNA2 architecture", icon='BLANK1')
# TODO: provide driver version info.
#if sys.platform[:3] == "win":
# col.label(text="and AMD driver version ??? or newer", icon='BLANK1')
if sys.platform[:3] == "win":
col.label(text="and AMD Radeon Pro 21.Q4 driver or newer", icon='BLANK1')
return
for device in devices: