pub struct SwapchainHandler<'a> {
pub asset_manager: &'a mut AssetManager,
pub renderer: &'a Renderer,
}
Fields§
§asset_manager: &'a mut AssetManager
§renderer: &'a Renderer
Implementations§
Source§impl<'a> SwapchainHandler<'a>
impl<'a> SwapchainHandler<'a>
pub fn create_swapchain( asset_manager: &mut AssetManager, renderer: &mut Renderer, display: &dyn HasRawDisplayHandle, window: &dyn HasRawWindowHandle, swapchain_def: &RafxSwapchainDef, ) -> RafxResult<RafxSwapchainHelper>
pub fn acquire_next_image( swapchain_helper: &mut RafxSwapchainHelper, asset_manager: &mut AssetManager, renderer: &Renderer, window_width: u32, window_height: u32, ) -> RafxResult<RafxPresentableFrame>
pub fn destroy_swapchain( swapchain_helper: RafxSwapchainHelper, asset_manager: &mut AssetManager, renderer: &Renderer, ) -> RafxResult<()>
Trait Implementations§
Source§impl<'a> RafxSwapchainEventListener for SwapchainHandler<'a>
impl<'a> RafxSwapchainEventListener for SwapchainHandler<'a>
Source§fn swapchain_created(
&mut self,
device_context: &RafxDeviceContext,
swapchain: &RafxSwapchain,
) -> RafxResult<()>
fn swapchain_created( &mut self, device_context: &RafxDeviceContext, swapchain: &RafxSwapchain, ) -> RafxResult<()>
Called whenever the swapchain needs to be created (the first time, and in cases where the
swapchain needs to be recreated)
Source§fn swapchain_destroyed(
&mut self,
_device_context: &RafxDeviceContext,
_swapchain: &RafxSwapchain,
) -> RafxResult<()>
fn swapchain_destroyed( &mut self, _device_context: &RafxDeviceContext, _swapchain: &RafxSwapchain, ) -> RafxResult<()>
Called whenever the swapchain will be destroyed (when VkSurface is dropped, and also in cases
where the swapchain needs to be recreated)
Auto Trait Implementations§
impl<'a> Freeze for SwapchainHandler<'a>
impl<'a> !RefUnwindSafe for SwapchainHandler<'a>
impl<'a> Send for SwapchainHandler<'a>
impl<'a> Sync for SwapchainHandler<'a>
impl<'a> Unpin for SwapchainHandler<'a>
impl<'a> !UnwindSafe for SwapchainHandler<'a>
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
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait>
(where Trait: Downcast
) to Box<dyn Any>
. Box<dyn Any>
can
then be further downcast
into Box<ConcreteType>
where ConcreteType
implements Trait
.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait>
(where Trait: Downcast
) to Rc<Any>
. Rc<Any>
can then be
further downcast
into Rc<ConcreteType>
where ConcreteType
implements Trait
.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &Any
’s vtable from &Trait
’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait
(where Trait: Downcast
) to &Any
. This is needed since Rust cannot
generate &mut Any
’s vtable from &mut Trait
’s.