From d3fcd4711cd32ac0821f34189d5fac2b4460283f Mon Sep 17 00:00:00 2001 From: Dzmitry Malyshau Date: Sun, 31 May 2020 11:40:33 -0400 Subject: [PATCH] [rs] Enable X11 in Vulkan (#335) * Enable X11 in Vulkan * Fix Cargo comments --- wgpu/Cargo.toml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/wgpu/Cargo.toml b/wgpu/Cargo.toml index f861fd6efc..0b4059169c 100644 --- a/wgpu/Cargo.toml +++ b/wgpu/Cargo.toml @@ -44,6 +44,11 @@ smallvec = "1" raw-window-handle = "0.3" parking_lot = "0.10" +#Note: we may consider switching this to "dev-dependencies" if users +# want to opt into X11 explicitly. +[target.'cfg(all(unix, not(target_os = "ios"), not(target_os = "macos")))'.dependencies] +gfx-backend-vulkan = { version = "0.5", features = ["x11"] } + [dev-dependencies] cgmath = "0.17" log = "0.4"