Skip to content

Commit a8d14e3

Browse files
fixup! feat: support blendable f32 textures on vulkan
1 parent fc6bd3f commit a8d14e3

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

wgpu-types/src/features.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,16 @@ mod webgpu_impl {
5858
pub const WEBGPU_FEATURE_FLOAT32_FILTERABLE: u64 = 1 << 12;
5959

6060
#[doc(hidden)]
61-
pub const WEBGPU_FEATURE_DUAL_SOURCE_BLENDING: u64 = 1 << 13;
61+
pub const WEBGPU_FEATURE_FLOAT32_BLENDABLE: u64 = 1 << 13;
6262

6363
#[doc(hidden)]
64-
pub const WEBGPU_FEATURE_CLIP_DISTANCES: u64 = 1 << 14;
64+
pub const WEBGPU_FEATURE_DUAL_SOURCE_BLENDING: u64 = 1 << 14;
6565

6666
#[doc(hidden)]
67-
pub const WEBGPU_FEATURE_IMMEDIATES: u64 = 1 << 15;
67+
pub const WEBGPU_FEATURE_CLIP_DISTANCES: u64 = 1 << 15;
6868

6969
#[doc(hidden)]
70-
pub const WEBGPU_FEATURE_FLOAT32_BLENDABLE: u64 = 1 << 16;
70+
pub const WEBGPU_FEATURE_IMMEDIATES: u64 = 1 << 16;
7171
}
7272

7373
macro_rules! bitflags_array_impl {

0 commit comments

Comments
 (0)