Implement KRRenderGraph::getFinalRenderPass()

This commit is contained in:
2025-04-08 23:45:12 -07:00
parent 3928e247eb
commit 51d6038187
5 changed files with 18 additions and 1 deletions

View File

@@ -103,3 +103,8 @@ RenderPassType KRRenderPass::getType() const
{
return m_info.type;
}
bool KRRenderPass::isFinal() const
{
return m_info.finalPass;
}