| 1269 | } |
| 1270 | |
| 1271 | void |
| 1272 | AppManager::clearNodeCache() |
| 1273 | { |
| 1274 | AppInstanceVec copy; |
| 1275 | { |
| 1276 | QMutexLocker k(&_imp->_appInstancesMutex); |
| 1277 | copy = _imp->_appInstances; |
| 1278 | } |
| 1279 | |
| 1280 | for (AppInstanceVec::iterator it = copy.begin(); it != copy.end(); ++it) { |
| 1281 | (*it)->clearAllLastRenderedImages(); |
| 1282 | } |
| 1283 | _imp->_nodeCache->clear(); |
| 1284 | } |
| 1285 | |
| 1286 | void |
| 1287 | AppManager::clearPluginsLoadedCache() |
nothing calls this directly
no test coverage detected