GETTER FOR RENDER GRAPH

This commit is contained in:
Brandon Mak 2022-09-09 14:38:09 +08:00
parent ae372f2917
commit 361237ede1
2 changed files with 7 additions and 0 deletions

View File

@ -246,4 +246,9 @@ namespace SHADE
window = wind;
}
SHRenderGraph const& SHGraphicsSystem::GetRenderGraph(void) const noexcept
{
return renderGraph;
}
}

View File

@ -116,6 +116,8 @@ namespace SHADE
Handle<SHVkPhysicalDevice> GetPhysicalDevice() const {return physicalDevice;}
Handle<SHVkQueue> GetQueue() const { return queue; }
Handle<SHVkDescriptorPool> GetDescriptorPool() const { return descPool; }
SHRenderGraph const& GetRenderGraph (void) const noexcept;
//Handle<SHVkRenderpass> GetRenderPass() const { return renderPass; }