Skip to content

Commit e311e60

Browse files
committed
[SharedCache] Skip processing .atlas files
The atlas files include section name info on images, its not helpful for us and skipping it altogether will remove an unneeded error related to parsing this other format
1 parent b74c500 commit e311e60

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

view/sharedcache/core/SharedCacheBuilder.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ bool SharedCacheBuilder::AddFile(
3131
// Skip map files, they contain some nice information... we don't use.
3232
if (fileName.find(".map") != std::string::npos)
3333
return false;
34+
// Skip atlas files, they contain some nice information... we don't use.
35+
if (fileName.find(".atlas") != std::string::npos)
36+
return false;
3437
// Skip bndb files!
3538
if (fileName.find(".bndb") != std::string::npos)
3639
return false;

0 commit comments

Comments
 (0)