| 208 | } |
| 209 | |
| 210 | SimpleTextDrawer SimpleTextDrawer::Draw(const String& str, unsigned int characterSize, UInt32 style, const Color& color) |
| 211 | { |
| 212 | SimpleTextDrawer drawer; |
| 213 | drawer.SetCharacterSize(characterSize); |
| 214 | drawer.SetColor(color); |
| 215 | drawer.SetStyle(style); |
| 216 | drawer.SetText(str); |
| 217 | |
| 218 | return drawer; |
| 219 | } |
| 220 | |
| 221 | SimpleTextDrawer SimpleTextDrawer::Draw(Font* font, const String& str, unsigned int characterSize, UInt32 style, const Color& color) |
| 222 | { |
nothing calls this directly
no test coverage detected