diff options
| author | Aitor Camacho <aitor@lunarg.com> | 2025-09-23 10:24:52 +0200 |
|---|---|---|
| committer | Marge Bot <marge-bot@fdo.invalid> | 2025-10-20 17:46:38 +0000 |
| commit | 7c268a1e918544ebe8669ecf7c78d34a9eaf92c1 (patch) | |
| tree | d186c7a9d2f5f4578b0ba50e5931e8e2c5b0eda5 /meson.build | |
| parent | f6c7f16322de7088fef812890e30a697c4f2eaf2 (diff) | |
kk: Add KosmicKrisp
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37522>
Diffstat (limited to 'meson.build')
| -rw-r--r-- | meson.build | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meson.build b/meson.build index ec978d02cdd..80917def523 100644 --- a/meson.build +++ b/meson.build @@ -271,7 +271,7 @@ elif _vulkan_drivers.contains('all') _vulkan_drivers = ['amd', 'intel', 'intel_hasvk', 'swrast', 'freedreno', 'panfrost', 'virtio', 'broadcom', 'imagination', 'microsoft-experimental', - 'nouveau', 'asahi', 'gfxstream'] + 'nouveau', 'asahi', 'gfxstream', 'kosmickrisp'] endif with_intel_vk = _vulkan_drivers.contains('intel') @@ -288,6 +288,7 @@ with_microsoft_vk = _vulkan_drivers.contains('microsoft-experimental') with_nouveau_vk = _vulkan_drivers.contains('nouveau') with_asahi_vk = _vulkan_drivers.contains('asahi') with_gfxstream_vk = _vulkan_drivers.contains('gfxstream') +with_kosmickrisp_vk = _vulkan_drivers.contains('kosmickrisp') with_any_vk = _vulkan_drivers.length() != 0 with_llvm = with_llvm \ @@ -829,6 +830,7 @@ with_driver_using_cl = [ with_gallium_asahi, with_asahi_vk, with_tools.contains('asahi'), with_gallium_panfrost, with_panfrost_vk, with_nouveau_vk, with_imagination_vk, + with_kosmickrisp_vk, ].contains(true) if get_option('mesa-clc') == 'system' |