| 35 | } |
| 36 | |
| 37 | static TextShaperCacheKey makeCacheKey(FontId fontId, const std::vector<Character>& characters) { |
| 38 | return TextShaperCacheKey(fontId, 0.0f, TextScript::invalid(), false, characters.data(), characters.size()); |
| 39 | } |
| 40 | |
| 41 | TEST(TextShaperCache, canInsertAndGet) { |
| 42 | TextShaperCache cache(8); |
no test coverage detected