| 994 | } |
| 995 | |
| 996 | RenderSafetyEnum |
| 997 | Node::getCurrentRenderThreadSafety() const |
| 998 | { |
| 999 | if ( !isMultiThreadingSupportEnabledForPlugin() ) { |
| 1000 | return eRenderSafetyInstanceSafe; |
| 1001 | } |
| 1002 | QMutexLocker k(&_imp->pluginsPropMutex); |
| 1003 | |
| 1004 | return _imp->currentThreadSafety; |
| 1005 | } |
| 1006 | |
| 1007 | void |
| 1008 | Node::revertToPluginThreadSafety() |
no outgoing calls
no test coverage detected