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