diff options
author | tcmal <me@aria.rip> | 2024-08-25 17:44:22 +0100 |
---|---|---|
committer | tcmal <me@aria.rip> | 2024-08-25 17:44:22 +0100 |
commit | e8126750633fd9ed3e682a2c889740a1f51a86f7 (patch) | |
tree | d2da548230f9ff3703fbf7f60f52f575f43d360d /stockton-render/src/draw/ui/pipeline.rs | |
parent | 6793abcd3bb054ff4c6dc0e6b97a76d463730deb (diff) |
feat(render): rendy-memory for textures
unfortunately this involves downgrading gfx-hal
Diffstat (limited to 'stockton-render/src/draw/ui/pipeline.rs')
-rw-r--r-- | stockton-render/src/draw/ui/pipeline.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/stockton-render/src/draw/ui/pipeline.rs b/stockton-render/src/draw/ui/pipeline.rs index 878d8cd..f608173 100644 --- a/stockton-render/src/draw/ui/pipeline.rs +++ b/stockton-render/src/draw/ui/pipeline.rs @@ -97,7 +97,7 @@ impl UIPipeline { let external_dependency = SubpassDependency { flags: Dependencies::empty(), - passes: None..Some(0), + passes: SubpassRef::External..SubpassRef::Pass(0), stages: PipelineStage::COLOR_ATTACHMENT_OUTPUT ..(PipelineStage::COLOR_ATTACHMENT_OUTPUT | PipelineStage::EARLY_FRAGMENT_TESTS), @@ -198,7 +198,6 @@ impl UIPipeline { depth_clamping: false, depth_bias: None, conservative: true, - line_width: hal::pso::State::Static(1.0), }; // Depth stencil |