| 111 | } |
| 112 | |
| 113 | float nvg::Text(float x, float y, String text) { |
| 114 | return nvgText(Context(), x, y, text.begin(), text.end()); |
| 115 | } |
| 116 | |
| 117 | void nvg::TextBox(float x, float y, float breakRowWidth, String text) { |
| 118 | nvgTextBox(Context(), x, y, breakRowWidth, text.begin(), text.end()); |
no test coverage detected