forked from mirror/openmw-tes3mp
Add a mutex lock around the SharedStateManager
This commit is contained in:
parent
c3ad4dad75
commit
49ecac4ced
2 changed files with 4 additions and 0 deletions
|
@ -357,7 +357,9 @@ namespace Resource
|
|||
loaded->accept(setFilterSettingsControllerVisitor);
|
||||
|
||||
// share state
|
||||
mSharedStateMutex.lock();
|
||||
osgDB::Registry::instance()->getOrCreateSharedStateManager()->share(loaded.get());
|
||||
mSharedStateMutex.unlock();
|
||||
|
||||
if (mIncrementalCompileOperation)
|
||||
mIncrementalCompileOperation->add(loaded);
|
||||
|
|
|
@ -89,6 +89,8 @@ namespace Resource
|
|||
void setUnRefImageDataAfterApply(bool unref);
|
||||
|
||||
private:
|
||||
OpenThreads::Mutex mSharedStateMutex;
|
||||
|
||||
Resource::ImageManager* mImageManager;
|
||||
Resource::NifFileManager* mNifFileManager;
|
||||
|
||||
|
|
Loading…
Reference in a new issue