1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 18:35:20 +00:00

Wait for initialDrawCallback to finish before removing it

This commit is contained in:
Mads Buvik Sandvei 2020-12-18 08:48:39 +00:00 committed by psi29a
parent 691b4d64fe
commit ea8f98b339

View File

@ -1,6 +1,7 @@
#include "loadingscreen.hpp" #include "loadingscreen.hpp"
#include <array> #include <array>
#include <condition_variable>
#include <osgViewer/Viewer> #include <osgViewer/Viewer>
@ -139,6 +140,7 @@ namespace MWGui
public: public:
CopyFramebufferToTextureCallback(osg::Texture2D* texture) CopyFramebufferToTextureCallback(osg::Texture2D* texture)
: mTexture(texture) : mTexture(texture)
, mOneshot(true)
{ {
} }
@ -147,9 +149,25 @@ namespace MWGui
int w = renderInfo.getCurrentCamera()->getViewport()->width(); int w = renderInfo.getCurrentCamera()->getViewport()->width();
int h = renderInfo.getCurrentCamera()->getViewport()->height(); int h = renderInfo.getCurrentCamera()->getViewport()->height();
mTexture->copyTexImage2D(*renderInfo.getState(), 0, 0, w, h); mTexture->copyTexImage2D(*renderInfo.getState(), 0, 0, w, h);
{
std::unique_lock<std::mutex> lock(mMutex);
mOneshot = false;
}
mSignal.notify_all();
}
void wait()
{
std::unique_lock<std::mutex> lock(mMutex);
while (mOneshot)
mSignal.wait(lock);
} }
private: private:
mutable bool mOneshot;
mutable std::mutex mMutex;
mutable std::condition_variable mSignal;
osg::ref_ptr<osg::Texture2D> mTexture; osg::ref_ptr<osg::Texture2D> mTexture;
}; };
@ -375,7 +393,7 @@ namespace MWGui
if (mCopyFramebufferToTextureCallback) if (mCopyFramebufferToTextureCallback)
{ {
mCopyFramebufferToTextureCallback->wait();
#if OSG_VERSION_GREATER_OR_EQUAL(3, 5, 10) #if OSG_VERSION_GREATER_OR_EQUAL(3, 5, 10)
mViewer->getCamera()->removeInitialDrawCallback(mCopyFramebufferToTextureCallback); mViewer->getCamera()->removeInitialDrawCallback(mCopyFramebufferToTextureCallback);
#else #else