aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/amd/vulkan/meson.build2
-rw-r--r--src/freedreno/vulkan/meson.build2
-rw-r--r--src/intel/vulkan/meson.build2
-rw-r--r--src/vulkan/meson.build2
-rw-r--r--src/vulkan/wsi/meson.build2
5 files changed, 5 insertions, 5 deletions
diff --git a/src/amd/vulkan/meson.build b/src/amd/vulkan/meson.build
index aa27b82c98a..e5fba9de21b 100644
--- a/src/amd/vulkan/meson.build
+++ b/src/amd/vulkan/meson.build
@@ -131,7 +131,7 @@ if with_platform_wayland
libradv_files += files('radv_wsi_wayland.c')
endif
-if system_has_kms_drm
+if system_has_kms_drm and not with_platform_android
radv_flags += '-DVK_USE_PLATFORM_DISPLAY_KHR'
libradv_files += files('radv_wsi_display.c')
endif
diff --git a/src/freedreno/vulkan/meson.build b/src/freedreno/vulkan/meson.build
index eab543e1c12..8696f246da0 100644
--- a/src/freedreno/vulkan/meson.build
+++ b/src/freedreno/vulkan/meson.build
@@ -81,7 +81,7 @@ if with_platform_wayland
libtu_files += files('tu_wsi_wayland.c')
endif
-if system_has_kms_drm
+if system_has_kms_drm and not with_platform_android
tu_flags += '-DVK_USE_PLATFORM_DISPLAY_KHR'
libtu_files += files('tu_wsi_display.c')
endif
diff --git a/src/intel/vulkan/meson.build b/src/intel/vulkan/meson.build
index aff495506d3..2d37fa0eb5e 100644
--- a/src/intel/vulkan/meson.build
+++ b/src/intel/vulkan/meson.build
@@ -155,7 +155,7 @@ if with_platform_wayland
libanv_files += files('anv_wsi_wayland.c')
endif
-if system_has_kms_drm
+if system_has_kms_drm and not with_platform_android
anv_flags += '-DVK_USE_PLATFORM_DISPLAY_KHR'
libanv_files += files('anv_wsi_display.c')
endif
diff --git a/src/vulkan/meson.build b/src/vulkan/meson.build
index 1e3f65c18d0..ae84e0d739d 100644
--- a/src/vulkan/meson.build
+++ b/src/vulkan/meson.build
@@ -45,7 +45,7 @@ if with_platform_wayland
vulkan_wsi_deps += dep_wayland_client
vulkan_wsi_list += ['wayland']
endif
-if system_has_kms_drm
+if system_has_kms_drm and not with_platform_android
vulkan_wsi_args += '-DVK_USE_PLATFORM_DISPLAY_KHR'
vulkan_wsi_deps += [dep_libdrm]
vulkan_wsi_list += ['drm']
diff --git a/src/vulkan/wsi/meson.build b/src/vulkan/wsi/meson.build
index 0186ca6d4a1..687f5894882 100644
--- a/src/vulkan/wsi/meson.build
+++ b/src/vulkan/wsi/meson.build
@@ -34,7 +34,7 @@ if with_platform_wayland
]
endif
-if system_has_kms_drm
+if system_has_kms_drm and not with_platform_android
files_vulkan_wsi += files('wsi_common_display.c')
endif