8 lines
244 B
Rust
8 lines
244 B
Rust
#[derive(Debug, Clone, Copy, PartialEq)]
|
|
#[allow(dead_code)]
|
|
pub enum GraphicsEvent {
|
|
/// Signifies that the swapchain was recreated. This requires images that
|
|
/// reference the old swapchain to be recreated.
|
|
SwapchainRecreation,
|
|
}
|