style: align doc. commentary in TextureFormatFeatureFlags (#5809)

This commit is contained in:
Erich Gubler 2024-06-13 12:40:05 -04:00 committed by GitHub
parent 39534ff342
commit c4a8f038ee
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2268,11 +2268,11 @@ bitflags::bitflags! {
const FILTERABLE = 1 << 0; const FILTERABLE = 1 << 0;
/// Allows [`TextureDescriptor::sample_count`] to be `2`. /// Allows [`TextureDescriptor::sample_count`] to be `2`.
const MULTISAMPLE_X2 = 1 << 1; const MULTISAMPLE_X2 = 1 << 1;
/// Allows [`TextureDescriptor::sample_count`] to be `4`. /// Allows [`TextureDescriptor::sample_count`] to be `4`.
const MULTISAMPLE_X4 = 1 << 2 ; const MULTISAMPLE_X4 = 1 << 2 ;
/// Allows [`TextureDescriptor::sample_count`] to be `8`. /// Allows [`TextureDescriptor::sample_count`] to be `8`.
const MULTISAMPLE_X8 = 1 << 3 ; const MULTISAMPLE_X8 = 1 << 3 ;
/// Allows [`TextureDescriptor::sample_count`] to be `16`. /// Allows [`TextureDescriptor::sample_count`] to be `16`.
const MULTISAMPLE_X16 = 1 << 4; const MULTISAMPLE_X16 = 1 << 4;
/// Allows a texture of this format to back a view passed as `resolve_target` /// Allows a texture of this format to back a view passed as `resolve_target`
/// to a render pass for an automatic driver-implemented resolve. /// to a render pass for an automatic driver-implemented resolve.