mirror of
https://github.com/minetest/minetest.git
synced 2024-11-23 16:13:46 +01:00
Android: Fix memory leak when displaying images in the mainmenu (#8011)
This commit is contained in:
parent
a318bceb63
commit
0990ddb3bb
@ -70,22 +70,30 @@ MenuTextureSource::~MenuTextureSource()
|
|||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
video::ITexture *MenuTextureSource::getTexture(const std::string &name, u32 *id)
|
video::ITexture *MenuTextureSource::getTexture(const std::string &name, u32 *id)
|
||||||
{
|
{
|
||||||
if(id)
|
if (id)
|
||||||
*id = 0;
|
*id = 0;
|
||||||
if(name.empty())
|
|
||||||
|
if (name.empty())
|
||||||
return NULL;
|
return NULL;
|
||||||
|
|
||||||
m_to_delete.insert(name);
|
m_to_delete.insert(name);
|
||||||
|
|
||||||
#ifdef __ANDROID__
|
#ifdef __ANDROID__
|
||||||
video::IImage *image = m_driver->createImageFromFile(name.c_str());
|
video::ITexture *retval = m_driver->findTexture(name.c_str());
|
||||||
if (image) {
|
if (retval)
|
||||||
image = Align2Npot2(image, m_driver);
|
|
||||||
video::ITexture* retval = m_driver->addTexture(name.c_str(), image);
|
|
||||||
image->drop();
|
|
||||||
return retval;
|
return retval;
|
||||||
}
|
|
||||||
#endif
|
video::IImage *image = m_driver->createImageFromFile(name.c_str());
|
||||||
|
if (!image)
|
||||||
|
return NULL;
|
||||||
|
|
||||||
|
image = Align2Npot2(image, m_driver);
|
||||||
|
retval = m_driver->addTexture(name.c_str(), image);
|
||||||
|
image->drop();
|
||||||
|
return retval;
|
||||||
|
#else
|
||||||
return m_driver->getTexture(name.c_str());
|
return m_driver->getTexture(name.c_str());
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
/******************************************************************************/
|
/******************************************************************************/
|
||||||
|
Loading…
Reference in New Issue
Block a user