| 41 | }; |
| 42 | |
| 43 | void AddSymbols(std::string const & str, std::set<char> & symbols) |
| 44 | { |
| 45 | for (size_t i = 0, sz = str.length(); i < sz; ++i) |
| 46 | symbols.insert(str[i]); |
| 47 | } |
| 48 | |
| 49 | void DebugInfoLabels::AddLabel(ref_ptr<dp::TextureManager> tex, std::string const & caption, |
| 50 | TUpdateDebugLabelFn const & onUpdateFn) |