diff --git a/ash/src/vk/prelude.rs b/ash/src/vk/prelude.rs index 1091880..4062321 100644 --- a/ash/src/vk/prelude.rs +++ b/ash/src/vk/prelude.rs @@ -29,11 +29,7 @@ impl Packed24_8 { } } -// Intradoc `Self::` links refuse to resolve if `ColorComponentFlags` -// isn't directly in scope: https://github.com/rust-lang/rust/issues/93205 -use vk::ColorComponentFlags; - -impl ColorComponentFlags { +impl vk::ColorComponentFlags { /// Contraction of [`R`][Self::R] | [`G`][Self::G] | [`B`][Self::B] | [`A`][Self::A] pub const RGBA: Self = Self(Self::R.0 | Self::G.0 | Self::B.0 | Self::A.0); }