| 3263 | } |
| 3264 | |
| 3265 | void |
| 3266 | ViewerInstance::setFullFrameProcessingEnabled(bool fullFrame) |
| 3267 | { |
| 3268 | { |
| 3269 | QMutexLocker l(&_imp->viewerParamsMutex); |
| 3270 | if (_imp->fullFrameProcessingEnabled == fullFrame) { |
| 3271 | return; |
| 3272 | } |
| 3273 | _imp->fullFrameProcessingEnabled = fullFrame; |
| 3274 | } |
| 3275 | if ( !getApp()->getProject()->isLoadingProject() ) { |
| 3276 | renderCurrentFrame(true); |
| 3277 | } |
| 3278 | } |
| 3279 | |
| 3280 | bool |
| 3281 | ViewerInstance::isFullFrameProcessingEnabled() const |
no test coverage detected