| 4632 | } |
| 4633 | |
| 4634 | void |
| 4635 | EffectInstance::updateThreadLocalRenderTime(double time) |
| 4636 | { |
| 4637 | if ( QThread::currentThread() != qApp->thread() ) { |
| 4638 | EffectTLSDataPtr tls = _imp->tlsData->getTLSData(); |
| 4639 | if (tls && tls->currentRenderArgs.validArgs) { |
| 4640 | tls->currentRenderArgs.time = time; |
| 4641 | } |
| 4642 | } |
| 4643 | } |
| 4644 | |
| 4645 | bool |
| 4646 | EffectInstance::isDuringPaintStrokeCreationThreadLocal() const |
no test coverage detected