From e29f4a19a895c2541d8963c9f7e0d56dfcbe5c01 Mon Sep 17 00:00:00 2001 From: James Park Date: Tue, 13 Apr 2021 00:47:02 -0700 Subject: [PATCH] meson: Disable libdrm for RADV on Windows Reviewed-by: Jesse Natalie Acked-by: Samuel Pitoiset Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 59713ea..97a0589 100644 --- a/meson.build +++ b/meson.build @@ -1460,7 +1460,7 @@ _drm_ver = '2.4.81' _libdrm_checks = [ ['intel', with_dri_i915 or with_gallium_i915], - ['amdgpu', with_amd_vk or with_gallium_radeonsi], + ['amdgpu', (with_amd_vk and not with_platform_windows) or with_gallium_radeonsi], ['radeon', (with_gallium_radeonsi or with_dri_r100 or with_dri_r200 or with_gallium_r300 or with_gallium_r600)], ['nouveau', (with_gallium_nouveau or with_dri_nouveau)], -- 2.7.4