From 360cf7f2fb134ebb336fb9b88af5559ae674336f Mon Sep 17 00:00:00 2001 From: Jeroen Bakker Date: Thu, 26 Jun 2025 14:59:31 +0200 Subject: [PATCH] Vulkan: Hide WoA message on non Woa devices This PR only shows the Windows on ARM limitation on Windows on ARM devices. Also some tweaks to the messages were made. Has been tested on Linux, Windows x86 and Windows on ARM. Pull Request: https://projects.blender.org/blender/blender/pulls/141023 --- scripts/startup/bl_ui/space_userpref.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/scripts/startup/bl_ui/space_userpref.py b/scripts/startup/bl_ui/space_userpref.py index f56ba6bc435..acc370e5188 100644 --- a/scripts/startup/bl_ui/space_userpref.py +++ b/scripts/startup/bl_ui/space_userpref.py @@ -688,6 +688,7 @@ class USERPREF_PT_system_display_graphics(SystemPanel, CenterAlignMixIn, Panel): prefs = context.preferences system = prefs.system import gpu + import sys col = layout.column() col.prop(system, "gpu_backend", text="Backend") @@ -701,9 +702,10 @@ class USERPREF_PT_system_display_graphics(SystemPanel, CenterAlignMixIn, Panel): if system.gpu_backend == 'VULKAN': col = layout.column() - col.label(text="Vulkan backend limitations:", icon='INFO') - col.label(text="\u2022 WoA support", icon='BLANK1') - col.label(text="\u2022 Low VR performance", icon='BLANK1') + col.label(text="Current Vulkan backend limitations:", icon='INFO') + col.label(text="\u2022 Low performance in VR", icon='BLANK1') + if sys.platform == "win32" and gpu.platform.device_type_get() == 'QUALCOMM': + col.label(text="\u2022 Windows on ARM requires driver 31.0.112.0 or higher", icon='BLANK1') class USERPREF_PT_system_os_settings(SystemPanel, CenterAlignMixIn, Panel):