MCPcopy Create free account
hub / github.com/NazaraEngine/NazaraEngine / Draw

Method Draw

src/Nazara/Utility/SimpleTextDrawer.cpp:210–219  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls 5

SetStyleMethod · 0.80
SetTextMethod · 0.80
SetFontMethod · 0.80
SetCharacterSizeMethod · 0.45
SetColorMethod · 0.45

Tested by

no test coverage detected