diff options
| author | andreykproductengine <andreykproductengine@lindenlab.com> | 2018-10-08 20:27:10 +0300 |
|---|---|---|
| committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2018-10-08 20:27:10 +0300 |
| commit | 6bb496625f4492fabd44bd0e86acb8b599df8c43 (patch) | |
| tree | 79ff247106e144e1d6b73f2d03516857d49a43a2 /indra/newview/lllocalbitmaps.cpp | |
| parent | c1d1935fcce68874511f85a079cfcc1a5af28fa8 (diff) | |
SL-9746 [EEP] Local Texture options should work with EEP
Diffstat (limited to 'indra/newview/lllocalbitmaps.cpp')
| -rw-r--r-- | indra/newview/lllocalbitmaps.cpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/indra/newview/lllocalbitmaps.cpp b/indra/newview/lllocalbitmaps.cpp index 760325b652..47b6da708c 100644 --- a/indra/newview/lllocalbitmaps.cpp +++ b/indra/newview/lllocalbitmaps.cpp @@ -976,6 +976,19 @@ LLUUID LLLocalBitmapMgr::getWorldID(LLUUID tracking_id) return world_id; } +bool LLLocalBitmapMgr::isLocal(const LLUUID world_id) +{ + for (local_list_iter iter = sBitmapList.begin(); iter != sBitmapList.end(); iter++) + { + LLLocalBitmap* unit = *iter; + if (unit->getWorldID() == world_id) + { + return true; + } + } + return false; +} + std::string LLLocalBitmapMgr::getFilename(LLUUID tracking_id) { std::string filename = ""; |
