Skip to content

Commit

Permalink
Change WEBGPU_TEXTURE_FORMAT_SUPPORT to 1 << 14 instead of 1 << 13
Browse files Browse the repository at this point in the history
  • Loading branch information
expenses authored and jimblandy committed Jun 15, 2022
1 parent 006bbbc commit 5c8d4a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wgpu-types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1030,7 +1030,7 @@ bitflags::bitflags! {

/// Supports all the texture usages described in WebGPU. If this isn't supported, you
/// should call `get_texture_format_features` to get how you can use textures of a given format
const WEBGPU_TEXTURE_FORMAT_SUPPORT = 1 << 15;
const WEBGPU_TEXTURE_FORMAT_SUPPORT = 1 << 14;
}
}

Expand Down

0 comments on commit 5c8d4a8

Please sign in to comment.