diff options
Diffstat (limited to 'stockton-skeleton/src/draw_passes/cons.rs')
-rw-r--r-- | stockton-skeleton/src/draw_passes/cons.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/stockton-skeleton/src/draw_passes/cons.rs b/stockton-skeleton/src/draw_passes/cons.rs index f6c3d1b..9fb5d5d 100644 --- a/stockton-skeleton/src/draw_passes/cons.rs +++ b/stockton-skeleton/src/draw_passes/cons.rs @@ -2,7 +2,9 @@ //! Note that this can be extended to an arbitrary amount of draw passes. use super::{Beginning, DrawPass, End, IntoDrawPass, Middle, Singular}; -use crate::{session::Session, context::RenderingContext, queue_negotiator::QueueFamilyNegotiator, types::*}; +use crate::{ + context::RenderingContext, queue_negotiator::QueueFamilyNegotiator, session::Session, types::*, +}; use anyhow::Result; |