diff --git a/src/dawn/scene/components/ui/UILabelNew.cpp b/src/dawn/scene/components/ui/UILabelNew.cpp index edbf14f8..ee22b400 100644 --- a/src/dawn/scene/components/ui/UILabelNew.cpp +++ b/src/dawn/scene/components/ui/UILabelNew.cpp @@ -19,7 +19,7 @@ void UILabelNew::rebufferQuads(std::vector texts) { auto oldTexts = this->texts; textureMap.clear(); - glm::vec2 position(32, 32); + glm::vec2 position(0, 0); struct FontShaderBufferData fontData; int32_t quadIndex = 0; int32_t partIndex = 0; @@ -45,6 +45,9 @@ void UILabelNew::rebufferQuads(std::vector texts) { assertTrue(nextTexture < FONT_SHADER_TEXTURE_MAX); textureMap[itText->texture] = nextTexture++; } + + // Set initial line height + position.y = mathMax(itText->size, position.y); ++itText; } @@ -186,9 +189,8 @@ std::vector UILabelNew::getUIRenderPasses() { break; default: - break; + assertUnreachable(); } - assertTrue(param >= 0 && param < FONT_SHADER_TEXTURE_MAX); item.textureValues[param] = it->second; ++it; }