From 11960c4e6adebdff60a13033633595928bdf362b Mon Sep 17 00:00:00 2001 From: Erich Gubler Date: Thu, 1 Feb 2024 16:44:53 -0500 Subject: [PATCH] docs: note that `GPU_BASED_VALIDATION` implies `VALIDATION` --- wgpu-types/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wgpu-types/src/lib.rs b/wgpu-types/src/lib.rs index 29bae14838a..1fb3692ea82 100644 --- a/wgpu-types/src/lib.rs +++ b/wgpu-types/src/lib.rs @@ -904,8 +904,8 @@ bitflags::bitflags! { /// This mainly applies to a Vulkan driver's compliance version. If the major compliance version /// is `0`, then the driver is ignored. This flag allows that driver to be enabled for testing. const ALLOW_UNDERLYING_NONCOMPLIANT_ADAPTER = 1 << 3; - /// Enable GPU-based validation. Currently, this only changes behavior on the DX12 and - /// Vulkan backends. + /// Enable GPU-based validation. Implies [`Self::VALIDATION`]. Currently, this only changes + /// behavior on the DX12 and Vulkan backends. /// /// Supported platforms: ///