diff --git a/wgpu-types/src/lib.rs b/wgpu-types/src/lib.rs index adc4d9a7e7..716329f916 100644 --- a/wgpu-types/src/lib.rs +++ b/wgpu-types/src/lib.rs @@ -2436,14 +2436,14 @@ impl TextureFormat { // Packed 32 bit textures Self::Rgb10a2Unorm => ( native, float, linear, msaa_resolve, (1, 1), 4, attachment, 4), Self::Rg11b10Float => ( native, float, linear, msaa, (1, 1), 4, basic, 3), - // Packed 32 bit textures + // Normal 64 bit textures Self::Rg32Uint => ( native, uint, linear, noaa, (1, 1), 8, all_flags, 2), Self::Rg32Sint => ( native, sint, linear, noaa, (1, 1), 8, all_flags, 2), Self::Rg32Float => ( native, nearest, linear, noaa, (1, 1), 8, all_flags, 2), Self::Rgba16Uint => ( native, uint, linear, msaa, (1, 1), 8, all_flags, 4), Self::Rgba16Sint => ( native, sint, linear, msaa, (1, 1), 8, all_flags, 4), Self::Rgba16Float => ( native, float, linear, msaa_resolve, (1, 1), 8, all_flags, 4), - // Packed 32 bit textures + // Normal 128 bit textures Self::Rgba32Uint => ( native, uint, linear, noaa, (1, 1), 16, all_flags, 4), Self::Rgba32Sint => ( native, sint, linear, noaa, (1, 1), 16, all_flags, 4), Self::Rgba32Float => ( native, nearest, linear, noaa, (1, 1), 16, all_flags, 4),