forked from Mirrorlandia_minetest/irrlicht
Use binary search in CNullDriver::removeTexture()
This commit is contained in:
parent
af20d9ff86
commit
7298b46504
@ -283,15 +283,13 @@ void CNullDriver::removeTexture(ITexture* texture)
|
|||||||
{
|
{
|
||||||
if (!texture)
|
if (!texture)
|
||||||
return;
|
return;
|
||||||
|
SSurface s;
|
||||||
|
s.Surface = texture;
|
||||||
|
|
||||||
for (u32 i=0; i<Textures.size(); ++i)
|
s32 index = Textures.binary_search(s);
|
||||||
{
|
if (index != -1) {
|
||||||
if (Textures[i].Surface == texture)
|
texture->drop();
|
||||||
{
|
Textures.erase(index);
|
||||||
texture->drop();
|
|
||||||
Textures.erase(i);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user