Skip to content

Commit

Permalink
style: align doc. commentary in TextureFormatFeatureFlags (#5809)
Browse files Browse the repository at this point in the history
  • Loading branch information
ErichDonGubler authored Jun 13, 2024
1 parent 39534ff commit c4a8f03
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions wgpu-types/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2268,11 +2268,11 @@ bitflags::bitflags! {
const FILTERABLE = 1 << 0;
/// Allows [`TextureDescriptor::sample_count`] to be `2`.
const MULTISAMPLE_X2 = 1 << 1;
/// Allows [`TextureDescriptor::sample_count`] to be `4`.
/// Allows [`TextureDescriptor::sample_count`] to be `4`.
const MULTISAMPLE_X4 = 1 << 2 ;
/// Allows [`TextureDescriptor::sample_count`] to be `8`.
/// Allows [`TextureDescriptor::sample_count`] to be `8`.
const MULTISAMPLE_X8 = 1 << 3 ;
/// Allows [`TextureDescriptor::sample_count`] to be `16`.
/// Allows [`TextureDescriptor::sample_count`] to be `16`.
const MULTISAMPLE_X16 = 1 << 4;
/// Allows a texture of this format to back a view passed as `resolve_target`
/// to a render pass for an automatic driver-implemented resolve.
Expand Down

0 comments on commit c4a8f03

Please sign in to comment.