intel: Rearrange for next commit

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24974>
This commit is contained in:
Matt Turner
2023-08-30 14:50:00 -04:00
committed by Marge Bot
parent f2c8cb2649
commit 37b88a72fb

View File

@@ -251,6 +251,14 @@ with_any_broadcom = [
with_broadcom_vk,
].contains(true)
if ['x86_64'].contains(host_machine.cpu_family())
with_intel_clc = get_option('intel-clc').enabled()
with_intel_vk_rt = with_intel_vk and with_intel_clc
else
with_intel_clc = false
with_intel_vk_rt = false
endif
with_any_intel = [
with_gallium_crocus,
with_gallium_i915,
@@ -278,13 +286,6 @@ if with_aco_tests and not with_amd_vk
endif
with_microsoft_clc = get_option('microsoft-clc').enabled()
if ['x86_64'].contains(host_machine.cpu_family())
with_intel_clc = get_option('intel-clc').enabled()
with_intel_vk_rt = with_intel_vk and with_intel_clc
else
with_intel_clc = false
with_intel_vk_rt = false
endif
with_clc = with_microsoft_clc or with_intel_clc
with_spirv_to_dxil = get_option('spirv-to-dxil')