diff options
Diffstat (limited to 'stockton-skeleton/src/lib.rs')
-rw-r--r-- | stockton-skeleton/src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stockton-skeleton/src/lib.rs b/stockton-skeleton/src/lib.rs index 03f6d53..3212873 100644 --- a/stockton-skeleton/src/lib.rs +++ b/stockton-skeleton/src/lib.rs @@ -18,7 +18,7 @@ pub mod types; pub mod utils; use context::RenderingContext; -use draw_passes::{DrawPass, IntoDrawPass}; +use draw_passes::{DrawPass, IntoDrawPass, Singular}; use anyhow::{Context, Result}; @@ -35,9 +35,9 @@ pub struct Renderer<DP> { draw_pass: DP, } -impl<DP: DrawPass> Renderer<DP> { +impl<DP: DrawPass<Singular>> Renderer<DP> { /// Create a new Renderer. - pub fn new<IDP: IntoDrawPass<DP>>( + pub fn new<IDP: IntoDrawPass<DP, Singular>>( window: &Window, session: &mut Session, idp: IDP, |