Compare commits
No commits in common. "453d9dad7f061d412578155895bfc484d692fa29" and "1afd4100b4a5a08ae591266bc743fc7c469f8f76" have entirely different histories.
453d9dad7f
...
1afd4100b4
@ -87,7 +87,7 @@ glm::vec2 gui::Context::MeasureText(std::string_view text)
|
||||
|
||||
glm::vec2 cursor(0.0f);
|
||||
|
||||
while ((cp = DecodeUTF8Codepoint(p, end)))
|
||||
while (cp = DecodeUTF8Codepoint(p, end))
|
||||
{
|
||||
if (cp == ' ')
|
||||
{
|
||||
@ -146,12 +146,9 @@ void gui::Context::DrawText(std::string_view text, const glm::vec2& pos, uint32_
|
||||
|
||||
glm::vec2 cursor = pos;
|
||||
|
||||
if (scale == 1.0f)
|
||||
cursor = glm::floor(cursor);
|
||||
|
||||
uint32_t curr_color = color;
|
||||
|
||||
while ((cp = DecodeUTF8Codepoint(p, end)))
|
||||
while (cp = DecodeUTF8Codepoint(p, end))
|
||||
{
|
||||
if (cp == ' ')
|
||||
{
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user