| 25 | const float Label::AutomaticWidth = -1.0f; |
| 26 | |
| 27 | static float GetFontScale(uint32_t fontSize, bool sdf) { |
| 28 | return sdf ? s_cast<float>(fontSize) / s_cast<float>(DORA_SDF_FONT_BASE_SIZE) : 1.0f; |
| 29 | } |
| 30 | |
| 31 | static float GetFontScale(String fontStr) { |
| 32 | auto tokens = fontStr.split(";"_slice); |