diff options
Diffstat (limited to '')
-rw-r--r-- | wgpu/src/backend.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wgpu/src/backend.rs b/wgpu/src/backend.rs index 0735f81f..7c962308 100644 --- a/wgpu/src/backend.rs +++ b/wgpu/src/backend.rs @@ -124,7 +124,7 @@ impl Backend { } /// Performs an offscreen render pass. If the `format` selected by WGPU is not - /// `wgpu::TextureFormat::Rgba8UnormSrgb`, a conversion compute pipeline will run. + /// `wgpu::TextureFormat::Rgba8UnormSrgb`, it will be run through a blit. /// /// Returns `None` if the `frame` is `Rgba8UnormSrgb`, else returns the newly /// converted texture view in `Rgba8UnormSrgb`. |