meson: Deprecate vulkan-rt-drivers intel
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com> Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com> Acked-by: Caio Oliveira <caio.oliveira@intel.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/16970>
This commit is contained in:
parent
e565d1e4ea
commit
f7c82c72c4
2 changed files with 12 additions and 0 deletions
|
|
@ -283,6 +283,11 @@ with_imagination_srv = get_option('imagination-srv')
|
||||||
with_microsoft_vk = _vulkan_drivers.contains('microsoft-experimental')
|
with_microsoft_vk = _vulkan_drivers.contains('microsoft-experimental')
|
||||||
with_any_vk = _vulkan_drivers.length() != 0
|
with_any_vk = _vulkan_drivers.length() != 0
|
||||||
|
|
||||||
|
_vulkan_rt_drivers = get_option('vulkan-rt-drivers')
|
||||||
|
if _vulkan_rt_drivers.contains('intel')
|
||||||
|
error('Use -Dintel-clc=enabled to enable Intel Vulkan Ray Tracing')
|
||||||
|
endif
|
||||||
|
|
||||||
with_any_broadcom = with_gallium_vc4 or with_gallium_v3d or with_broadcom_vk
|
with_any_broadcom = with_gallium_vc4 or with_gallium_v3d or with_broadcom_vk
|
||||||
with_any_intel = with_intel_vk or with_intel_hasvk or with_gallium_iris or with_gallium_crocus or with_intel_tools
|
with_any_intel = with_intel_vk or with_intel_hasvk or with_gallium_iris or with_gallium_crocus or with_intel_tools
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -201,6 +201,13 @@ option(
|
||||||
choices : ['auto', 'amd', 'broadcom', 'freedreno', 'imagination-experimental', 'intel', 'intel_hasvk', 'microsoft-experimental', 'panfrost', 'swrast', 'virtio-experimental'],
|
choices : ['auto', 'amd', 'broadcom', 'freedreno', 'imagination-experimental', 'intel', 'intel_hasvk', 'microsoft-experimental', 'panfrost', 'swrast', 'virtio-experimental'],
|
||||||
description : 'List of vulkan drivers to build. If this is set to auto all drivers applicable to the target OS/architecture will be built'
|
description : 'List of vulkan drivers to build. If this is set to auto all drivers applicable to the target OS/architecture will be built'
|
||||||
)
|
)
|
||||||
|
option(
|
||||||
|
'vulkan-rt-drivers',
|
||||||
|
type : 'array',
|
||||||
|
value : ['auto'],
|
||||||
|
choices : ['auto', 'intel'],
|
||||||
|
description : 'List of vulkan drivers to enable ray-tracing support on. If this is set to auto all drivers applicable to the target OS/architecture will enabled ray-tracing support.'
|
||||||
|
)
|
||||||
option(
|
option(
|
||||||
'freedreno-kgsl',
|
'freedreno-kgsl',
|
||||||
type : 'boolean',
|
type : 'boolean',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue