Check sub pass and create inheritance info

This commit is contained in:
hodasemi 2023-01-21 09:27:56 +01:00
parent b1f4243ccf
commit 419c044413
5 changed files with 83 additions and 17 deletions

View file

@ -75,6 +75,7 @@ pub struct CommandBuffer {
#[derive(Debug)] #[derive(Debug)]
pub struct CommandBufferRecorder<'a> { pub struct CommandBufferRecorder<'a> {
device: Arc<Device>, device: Arc<Device>,
render_target: Option<&'a RenderTarget>,
pipeline: Option<Arc<Pipeline>>, pipeline: Option<Arc<Pipeline>>,
calls: Arc<AtomicUsize>, calls: Arc<AtomicUsize>,
@ -117,6 +118,7 @@ impl CommandBuffer {
Ok(CommandBufferRecorder { Ok(CommandBufferRecorder {
device: self.device.clone(), device: self.device.clone(),
render_target: None,
pipeline: None, pipeline: None,
calls: self.calls.clone(), calls: self.calls.clone(),
@ -327,6 +329,14 @@ impl<'a> CommandBufferRecorder<'a> {
.cmd_begin_render_pass(self.buffer, &renderpass_begin_info, subpass_contents); .cmd_begin_render_pass(self.buffer, &renderpass_begin_info, subpass_contents);
} }
pub(crate) fn set_render_target(&'a mut self, render_target: &'a RenderTarget) {
self.render_target = Some(render_target);
}
pub(crate) fn clear_render_target(&'a mut self) {
self.render_target = None;
}
pub fn begin_render_pass_full( pub fn begin_render_pass_full(
&mut self, &mut self,
render_pass: &Arc<RenderPass>, render_pass: &Arc<RenderPass>,
@ -366,11 +376,19 @@ impl<'a> CommandBufferRecorder<'a> {
self.handles_lock.push(pipeline.clone()); self.handles_lock.push(pipeline.clone());
match pipeline.pipeline_type() { match pipeline.pipeline_type() {
PipelineType::Graphics => self.device.cmd_bind_pipeline( PipelineType::Graphics => {
if cfg!(debug_assertions) {
if let Some(render_target) = &self.render_target {
assert_eq!(render_target.subpass_index(), pipeline.sub_pass());
}
}
self.device.cmd_bind_pipeline(
self.buffer, self.buffer,
VK_PIPELINE_BIND_POINT_GRAPHICS, VK_PIPELINE_BIND_POINT_GRAPHICS,
pipeline.vk_handle(), pipeline.vk_handle(),
), );
}
PipelineType::Compute => self.device.cmd_bind_pipeline( PipelineType::Compute => self.device.cmd_bind_pipeline(
self.buffer, self.buffer,
VK_PIPELINE_BIND_POINT_COMPUTE, VK_PIPELINE_BIND_POINT_COMPUTE,

View file

@ -19,6 +19,8 @@ pub struct Pipeline {
pipeline_type: PipelineType, pipeline_type: PipelineType,
pipeline: VkPipeline, pipeline: VkPipeline,
sub_pass: u32,
} }
impl Pipeline { impl Pipeline {
@ -33,9 +35,20 @@ impl Pipeline {
pipeline_layout, pipeline_layout,
pipeline_type, pipeline_type,
pipeline, pipeline,
sub_pass: u32::MAX,
} }
} }
pub(crate) fn set_sub_pass(mut self, subpass: u32) -> Self {
self.sub_pass = subpass;
self
}
pub(crate) fn sub_pass(&self) -> u32 {
self.sub_pass
}
pub fn new_graphics() -> GraphicsPipelineBuilder { pub fn new_graphics() -> GraphicsPipelineBuilder {
GraphicsPipelineBuilder::default() GraphicsPipelineBuilder::default()
} }

View file

@ -416,12 +416,15 @@ impl GraphicsPipelineBuilder {
&[pipeline_ci], &[pipeline_ci],
)?[0]; )?[0];
Ok(Arc::new(Pipeline::new( Ok(Arc::new(
Pipeline::new(
device, device,
pipeline_layout.clone(), pipeline_layout.clone(),
PipelineType::Graphics, PipelineType::Graphics,
pipeline, pipeline,
))) )
.set_sub_pass(subpass),
))
} }
} }

View file

@ -1,6 +1,9 @@
use crate::prelude::*; use crate::prelude::*;
use anyhow::Result; use anyhow::Result;
use std::sync::Arc; use std::sync::{
atomic::{AtomicU32, AtomicUsize, Ordering::SeqCst},
Arc,
};
pub mod sub_pass; pub mod sub_pass;
use sub_pass::{AttachmentInfo, AttachmentInfoUsage, SubPass}; use sub_pass::{AttachmentInfo, AttachmentInfoUsage, SubPass};
@ -186,6 +189,9 @@ impl RenderTargetBuilder {
extent, extent,
sub_passes: self.sub_passes, sub_passes: self.sub_passes,
current_subpass: AtomicU32::new(0),
framebuffer_index: AtomicUsize::new(0),
}) })
} }
@ -224,6 +230,7 @@ struct SubPassAttachmentReferences {
depth_stencil_attachment: Option<VkAttachmentReference>, depth_stencil_attachment: Option<VkAttachmentReference>,
} }
#[derive(Debug)]
pub struct RenderTarget { pub struct RenderTarget {
render_pass: Arc<RenderPass>, render_pass: Arc<RenderPass>,
framebuffers: Vec<Arc<Framebuffer>>, framebuffers: Vec<Arc<Framebuffer>>,
@ -232,6 +239,9 @@ pub struct RenderTarget {
extent: VkExtent2D, extent: VkExtent2D,
sub_passes: Vec<SubPass>, sub_passes: Vec<SubPass>,
current_subpass: AtomicU32,
framebuffer_index: AtomicUsize,
} }
impl RenderTarget { impl RenderTarget {
@ -261,9 +271,22 @@ impl RenderTarget {
self.extent.height self.extent.height
} }
pub fn begin( pub(crate) fn subpass_index(&self) -> u32 {
&self, self.current_subpass.load(SeqCst)
buffer_recorder: &CommandBufferRecorder<'_>, }
pub fn inheritance_info(&self) -> VkCommandBufferInheritanceInfo {
CommandBuffer::inheritance_info(
Some(&self.render_pass),
Some(self.current_subpass.load(SeqCst)),
Some(self.framebuffer(self.framebuffer_index.load(SeqCst))),
None,
)
}
pub fn begin<'a>(
&'a self,
buffer_recorder: &'a mut CommandBufferRecorder<'a>,
subpass_content: VkSubpassContents, subpass_content: VkSubpassContents,
framebuffer_index: usize, framebuffer_index: usize,
) { ) {
@ -278,6 +301,10 @@ impl RenderTarget {
); );
buffer_recorder.begin_render_pass(renderpass_begin, subpass_content); buffer_recorder.begin_render_pass(renderpass_begin, subpass_content);
buffer_recorder.set_render_target(self);
self.framebuffer_index.store(framebuffer_index, SeqCst);
self.current_subpass.store(0, SeqCst);
} }
pub fn next_subpass( pub fn next_subpass(
@ -286,10 +313,12 @@ impl RenderTarget {
subpass_content: VkSubpassContents, subpass_content: VkSubpassContents,
) { ) {
buffer_recorder.next_subpass(subpass_content); buffer_recorder.next_subpass(subpass_content);
self.current_subpass.fetch_add(1, SeqCst);
} }
pub fn end(&self, buffer_recorder: &CommandBufferRecorder<'_>) { pub fn end<'a>(&self, buffer_recorder: &'a mut CommandBufferRecorder<'a>) {
buffer_recorder.end_render_pass(); buffer_recorder.end_render_pass();
buffer_recorder.clear_render_target();
} }
} }

View file

@ -157,6 +157,7 @@ impl<'a> From<&'a Vec<Arc<Image>>> for ResolveTarget {
} }
} }
#[derive(Debug)]
pub struct InputAttachmentInfo { pub struct InputAttachmentInfo {
pub sub_pass_index: usize, pub sub_pass_index: usize,
pub input_indices: Vec<usize>, pub input_indices: Vec<usize>,
@ -356,13 +357,14 @@ impl<'a> SubPassBuilder<'a> {
} }
} }
#[derive(Eq, PartialEq, Hash, Clone, Copy)] #[derive(Debug, Eq, PartialEq, Hash, Clone, Copy)]
pub enum AttachmentInfoUsage { pub enum AttachmentInfoUsage {
Depth, Depth,
Resolve, Resolve,
Output, Output,
} }
#[derive(Debug)]
pub struct AttachmentInfo { pub struct AttachmentInfo {
images: Vec<Arc<Image>>, images: Vec<Arc<Image>>,
pub(crate) clear_value: VkClearValue, pub(crate) clear_value: VkClearValue,
@ -383,6 +385,7 @@ impl AttachmentInfo {
} }
} }
#[derive(Debug)]
pub struct SubPass { pub struct SubPass {
extent: VkExtent2D, extent: VkExtent2D,