| 118 | } |
| 119 | |
| 120 | void RenderCache::prepareNextFrame() { |
| 121 | #ifndef PAG_BUILD_FOR_WEB |
| 122 | for (auto& item : usedSequences) { |
| 123 | for (auto& map : item.second) { |
| 124 | map.second->prepareNextImage(); |
| 125 | } |
| 126 | } |
| 127 | #endif |
| 128 | } |
| 129 | |
| 130 | void RenderCache::clearExpiredSequences() { |
| 131 | std::vector<ID> expiredSequences = {}; |
nothing calls this directly
no test coverage detected