Fixed UI Rendering #326

Merged
Xenosas1337 merged 13 commits from SP3-1-Rendering into main 2023-01-31 22:53:04 +08:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit a3ca04535f - Show all commits

View File

@ -1185,7 +1185,7 @@ namespace SHADE
return fontLibrary;
}
Handle <SHSubpass> const& SHGraphicsSystem::GetUsableSubpass(std::string const& subpassName) const noexcept
Handle <SHSubpass> SHGraphicsSystem::GetUsableSubpass(std::string const& subpassName) const noexcept
{
if (usableSubpassesMapping.contains(subpassName))
{

View File

@ -399,7 +399,7 @@ namespace SHADE
uint32_t GetCurrentFrameIndex(void) const noexcept { return renderContext.GetCurrentFrame(); }
SHFontLibrary const& GetFontLibrary (void) const noexcept;
const SHMeshLibrary& GetMeshLibrary() const noexcept { return meshLibrary; };
Handle <SHSubpass> const& GetUsableSubpass(std::string subpassName) const noexcept;
Handle <SHSubpass> GetUsableSubpass(std::string const& subpassName) const noexcept;
/*-----------------------------------------------------------------------------*/
/* Getters */