| 598 | tct->AddText(str.c_str(), str.length(), style, char_count_output); |
| 599 | } |
| 600 | static void ASAddTextMultiline(TextCanvasTexture* tct, const std::string& str, const CanvasTextStyle& style, uint32_t char_count_output) { |
| 601 | tct->AddTextMultiline(str.c_str(), str.length(), style, char_count_output); |
| 602 | } |
| 603 | |
| 604 | static void ASGetTextMetricsInfo(TextCanvasTexture* tct, const std::string& str, const CanvasTextStyle& style, TextMetrics& metrics, uint32_t char_count_output) { |
| 605 | tct->GetTextMetricsInfo(str.c_str(), str.length(), style, metrics, char_count_output); |
nothing calls this directly
no test coverage detected