forked from organicmaps/organicmaps
Fixed crash on texture manager usage before initialization
This commit is contained in:
parent
f8eb932230
commit
077fea7edb
2 changed files with 2 additions and 0 deletions
|
@ -1423,6 +1423,7 @@ void FrontendRenderer::RenderTransitBackground()
|
|||
|
||||
dp::TextureManager::ColorRegion region;
|
||||
m_texMng->GetColorRegion(df::GetColorConstant(kTransitBackgroundColor), region);
|
||||
CHECK(region.GetTexture() != nullptr, ("Texture manager is not initialized"));
|
||||
if (!m_transitBackground->IsInitialized())
|
||||
{
|
||||
auto prg = m_gpuProgramManager->GetProgram(gpu::Program::ScreenQuad);
|
||||
|
|
|
@ -1251,6 +1251,7 @@ private:
|
|||
class FinishTexturesInitializationMessage : public Message
|
||||
{
|
||||
public:
|
||||
bool IsGLContextDependent() const override { return true; }
|
||||
Type GetType() const override { return Message::FinishTexturesInitialization; }
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue