diff --git a/wgpu/src/lib.rs b/wgpu/src/lib.rs index f83ad6b8eb..ceb96e5a2e 100644 --- a/wgpu/src/lib.rs +++ b/wgpu/src/lib.rs @@ -963,7 +963,7 @@ pub struct SwapChainTexture { detail: ::SwapChainOutputDetail, } -/// Result of a successful call to [`SwapChain::get_next_frame`]. +/// Result of a successful call to [`SwapChain::get_current_frame`]. #[derive(Debug)] pub struct SwapChainFrame { /// The texture into which the next frame should be rendered. @@ -973,7 +973,7 @@ pub struct SwapChainFrame { pub suboptimal: bool, } -/// Result of an unsuccessful call to [`SwapChain::get_next_frame`]. +/// Result of an unsuccessful call to [`SwapChain::get_current_frame`]. #[derive(Clone, PartialEq, Eq, Debug)] pub enum SwapChainError { /// A timeout was encountered while trying to acquire the next frame.