mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 04:38:03 +02:00
intel: Rearrange for next commit
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/24974>
This commit is contained in:
parent
f2c8cb2649
commit
37b88a72fb
1 changed files with 8 additions and 7 deletions
15
meson.build
15
meson.build
|
|
@ -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')
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue