diff --git a/components/shader/shadermanager.hpp b/components/shader/shadermanager.hpp index f27c52a16e..d5d537722a 100644 --- a/components/shader/shadermanager.hpp +++ b/components/shader/shadermanager.hpp @@ -118,8 +118,12 @@ namespace Shader int mMaxTextureUnits = 0; int mReservedTextureUnits = 0; std::unique_ptr mHotReloadManager; - struct ReservedTextureUnits { int index = -1; int count = 0; }; - std::array(Slot::SLOT_COUNT) > mReservedTextureUnitsBySlot = {}; + struct ReservedTextureUnits + { + int index = -1; + int count = 0; + }; + std::array(Slot::SLOT_COUNT)> mReservedTextureUnitsBySlot = {}; }; bool parseForeachDirective(std::string& source, const std::string& templateName, size_t foundPos);