| 17 | } |
| 18 | |
| 19 | PrefetchThread::~PrefetchThread() |
| 20 | { |
| 21 | _mutex.lock(); |
| 22 | _abort = true; |
| 23 | _mutex.unlock(); |
| 24 | while (isRunning()) { |
| 25 | _condition.wakeOne(); |
| 26 | } |
| 27 | |
| 28 | wait(); |
| 29 | } |
| 30 | |
| 31 | void PrefetchThread::FOVChanged(MultiResolutionImage* img, const QRectF& FOV, const unsigned int level) |
| 32 | { |
nothing calls this directly
no outgoing calls
no test coverage detected