aboutsummaryrefslogtreecommitdiff
path: root/stockton-render/src/level.rs
diff options
context:
space:
mode:
authortcmal <me@aria.rip>2024-08-25 17:44:24 +0100
committertcmal <me@aria.rip>2024-08-25 17:44:24 +0100
commit1d0dbcd1750cb1dd0060fc8dfa3ba8a64b7f8afe (patch)
treea4bc4fe9f3b4113dc523473af14db89653168991 /stockton-render/src/level.rs
parent5360fe6a337145b2640ec1e5727c97fd9bbeacd9 (diff)
fix(skeleton): add used_layout to renderpass
fixes validation errors
Diffstat (limited to 'stockton-render/src/level.rs')
-rw-r--r--stockton-render/src/level.rs44
1 files changed, 27 insertions, 17 deletions
diff --git a/stockton-render/src/level.rs b/stockton-render/src/level.rs
index fc5111e..0c88a0b 100644
--- a/stockton-render/src/level.rs
+++ b/stockton-render/src/level.rs
@@ -10,8 +10,8 @@ use stockton_skeleton::{
image::{BoundImageView, ImageSpec, DEPTH_RESOURCES},
},
builders::{
- CompletePipeline, PipelineSpecBuilder, RenderpassSpec, ShaderDesc, VertexBufferSpec,
- VertexPrimitiveAssemblerSpec,
+ AttachmentSpec, CompletePipeline, PipelineSpecBuilder, RenderpassSpec, ShaderDesc,
+ VertexBufferSpec, VertexPrimitiveAssemblerSpec,
},
context::RenderingContext,
draw_passes::{util::TargetSpecificResources, DrawPass, IntoDrawPass, PassPosition},
@@ -354,22 +354,32 @@ where
})
.push_constants(vec![(ShaderStageFlags::VERTEX, 0..64)])
.renderpass(RenderpassSpec {
- colors: vec![Attachment {
- format: Some(context.target_chain().properties().format),
- samples: 1,
- ops: P::attachment_ops(),
- stencil_ops: P::attachment_ops(),
- layouts: P::layout_as_range(),
+ colors: vec![AttachmentSpec {
+ attachment: Attachment {
+ format: Some(context.target_chain().properties().format),
+ samples: 1,
+ ops: P::attachment_ops(),
+ stencil_ops: P::attachment_ops(),
+ layouts: P::layout_as_range(),
+ },
+
+ used_layout: Layout::ColorAttachmentOptimal,
}],
- depth: Some(Attachment {
- format: Some(context.target_chain().properties().depth_format),
- samples: 1,
- ops: AttachmentOps::new(AttachmentLoadOp::Clear, AttachmentStoreOp::DontCare),
- stencil_ops: AttachmentOps::new(
- AttachmentLoadOp::DontCare,
- AttachmentStoreOp::DontCare,
- ),
- layouts: Layout::Undefined..Layout::DepthStencilAttachmentOptimal,
+ depth: Some(AttachmentSpec {
+ attachment: Attachment {
+ format: Some(context.target_chain().properties().depth_format),
+ samples: 1,
+ ops: AttachmentOps::new(
+ AttachmentLoadOp::Clear,
+ AttachmentStoreOp::DontCare,
+ ),
+ stencil_ops: AttachmentOps::new(
+ AttachmentLoadOp::DontCare,
+ AttachmentStoreOp::DontCare,
+ ),
+ layouts: Layout::Undefined..Layout::DepthStencilAttachmentOptimal,
+ },
+ used_layout: Layout::DepthStencilAttachmentOptimal,
}),
inputs: vec![],
resolves: vec![],