--------------------------------- TextRenderer::TextCache::c-tor Initialize a text cache
| 23 | // Initialize a text cache |
| 24 | // |
| 25 | TextRenderer::TextCache::TextCache(std::string const& text, vec2 const pos, vec4 const& col, int16 const size) |
| 26 | : Text(text) |
| 27 | , Position(pos) |
| 28 | , Color(col) |
| 29 | , Size(size) |
| 30 | { } |
| 31 | |
| 32 | |
| 33 | //=============== |
nothing calls this directly
no outgoing calls
no test coverage detected