mirror of https://github.com/axmolengine/axmol.git
Update config.json for 3rd-party-libs and SpritePolygonCache
This commit is contained in:
parent
c2cefadb6f
commit
6f17dcecf2
|
@ -268,8 +268,7 @@ bool SpritePolygon::initWithMarching(const std::string &file, const cocos2d::Rec
|
|||
_polygonInfo = SpritePolygonCache::getInstance()->addSpritePolygonCache(file, *info);
|
||||
calculateUVandContentSize();
|
||||
|
||||
delete _triangles.verts;
|
||||
delete _triangles.indices;
|
||||
delete info;
|
||||
#if CC_SPRITE_DEBUG_DRAW
|
||||
debugDraw();
|
||||
#endif
|
||||
|
|
|
@ -145,14 +145,23 @@ void SpritePolygonCache::removeSpritePolygonCache(const std::string& filePath,
|
|||
return;
|
||||
|
||||
if (nullptr == rect)
|
||||
{
|
||||
|
||||
}
|
||||
return;
|
||||
|
||||
auto infoIter = it->second.begin();
|
||||
bool exist = false;
|
||||
for (; infoIter != it->second.end(); infoIter++)
|
||||
{
|
||||
//TODO: write clean up code...
|
||||
if((*infoIter)->_rect.equals(*rect))
|
||||
{
|
||||
exist = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
if (exist)
|
||||
{
|
||||
CC_SAFE_DELETE(*infoIter);
|
||||
it->second.erase(infoIter);
|
||||
}
|
||||
|
||||
return;
|
||||
|
@ -162,7 +171,11 @@ void SpritePolygonCache::removeAllSpritePolygonCache()
|
|||
{
|
||||
for (std::unordered_map<std::string, VecSpritePolygonInfo>::iterator it = _SpritePolygonCacheMap.begin(); it != _SpritePolygonCacheMap.end(); ++it)
|
||||
{
|
||||
//TODO: write clean up code...
|
||||
auto infoIter = it->second.begin();
|
||||
for (; infoIter != it->second.end(); infoIter++)
|
||||
{
|
||||
CC_SAFE_DELETE(*infoIter);
|
||||
}
|
||||
it->second.clear();
|
||||
}
|
||||
_SpritePolygonCacheMap.clear();
|
||||
|
|
|
@ -40,8 +40,17 @@ typedef struct CC_DLL _SpritePolygonInfo
|
|||
{
|
||||
cocos2d::Rect _rect;
|
||||
cocos2d::TrianglesCommand::Triangles _triangles;
|
||||
~_SpritePolygonInfo(){
|
||||
~_SpritePolygonInfo()
|
||||
{
|
||||
if(nullptr != _triangles.verts)
|
||||
{
|
||||
CC_SAFE_DELETE_ARRAY(_triangles.verts);
|
||||
}
|
||||
|
||||
if(nullptr != _triangles.indices)
|
||||
{
|
||||
CC_SAFE_DELETE_ARRAY(_triangles.indices);
|
||||
}
|
||||
}
|
||||
} SpritePolygonInfo;
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"version":"v3-deps-46",
|
||||
"version":"v3-deps-47",
|
||||
"zip_file_size":"74127526",
|
||||
"repo_name":"cocos2d-x-3rd-party-libs-bin",
|
||||
"repo_parent":"https://github.com/cocos2d/",
|
||||
|
|
Loading…
Reference in New Issue