More changes

This commit is contained in:
Brandon Mak 2023-01-30 16:46:42 +08:00
parent 89b101f3e5
commit a3ca04535f
2 changed files with 2 additions and 2 deletions

View File

@ -1185,7 +1185,7 @@ namespace SHADE
return fontLibrary; 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)) if (usableSubpassesMapping.contains(subpassName))
{ {

View File

@ -399,7 +399,7 @@ namespace SHADE
uint32_t GetCurrentFrameIndex(void) const noexcept { return renderContext.GetCurrentFrame(); } uint32_t GetCurrentFrameIndex(void) const noexcept { return renderContext.GetCurrentFrame(); }
SHFontLibrary const& GetFontLibrary (void) const noexcept; SHFontLibrary const& GetFontLibrary (void) const noexcept;
const SHMeshLibrary& GetMeshLibrary() const noexcept { return meshLibrary; }; 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 */ /* Getters */