| 2450 | } |
| 2451 | |
| 2452 | bool |
| 2453 | AppManager::getTexture(const FrameKey & key, |
| 2454 | std::list<FrameEntryPtr>* returnValue) const |
| 2455 | { |
| 2456 | std::list<FrameEntryPtr> retList; |
| 2457 | bool ret = _imp->_viewerCache->get(key, &retList); |
| 2458 | |
| 2459 | *returnValue = retList; |
| 2460 | |
| 2461 | return ret; |
| 2462 | } |
| 2463 | |
| 2464 | bool |
| 2465 | AppManager::getTextureOrCreate(const FrameKey & key, |
no test coverage detected