| 41 | |
| 42 | namespace { |
| 43 | std::string MakeHashKey(std::string_view folder_name, std::string_view filename, bool transparent) { |
| 44 | return ToString(folder_name) + ":" + ToString(filename) + ":" + (transparent ? "T" : " "); |
| 45 | } |
| 46 | |
| 47 | std::string MakeTileHashKey(std::string_view chipset_name, int id) { |
| 48 | std::string key; |
no outgoing calls
no test coverage detected