| 271 | } |
| 272 | |
| 273 | RenderSafetyEnum |
| 274 | Node::getCurrentRenderThreadSafety() const |
| 275 | { |
| 276 | if ( !isMultiThreadingSupportEnabledForPlugin() ) { |
| 277 | return eRenderSafetyInstanceSafe; |
| 278 | } |
| 279 | QMutexLocker k(&_imp->pluginsPropMutex); |
| 280 | |
| 281 | return _imp->currentThreadSafety; |
| 282 | } |
| 283 | |
| 284 | void |
| 285 | Node::revertToPluginThreadSafety() |
no outgoing calls
no test coverage detected