pub struct SwapChainFrame {
pub output: SwapChainTexture,
pub suboptimal: bool,
}
Expand description
Result of a successful call to SwapChain::get_next_frame
.
Fields§
§output: SwapChainTexture
The texture into which the next frame should be rendered.
suboptimal: bool
true
if the acquired buffer can still be used for rendering,
but should be recreated for maximum performance.
Auto Trait Implementations§
impl Freeze for SwapChainFrame
impl !RefUnwindSafe for SwapChainFrame
impl Send for SwapChainFrame
impl Sync for SwapChainFrame
impl Unpin for SwapChainFrame
impl !UnwindSafe for SwapChainFrame
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more