linux/x11: disable Vulkan validation in Debug (#8044)

Turns out this validation requirement is confusing new users.

Release Notes:
- N/A
This commit is contained in:
Dzmitry Malyshau 2024-02-20 11:14:13 -08:00 committed by GitHub
parent f7d2cb1818
commit b028231aea
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -240,7 +240,7 @@ impl X11WindowState {
gpu::Context::init_windowed(
&raw,
gpu::ContextDesc {
validation: cfg!(debug_assertions),
validation: false,
capture: false,
},
)