diff options
author | Runitai Linden <davep@lindenlab.com> | 2021-10-13 11:02:00 -0500 |
---|---|---|
committer | Runitai Linden <davep@lindenlab.com> | 2021-10-13 11:02:00 -0500 |
commit | 4dedd706ae07c4a1aeedfe9ca0c03b7c905d0b57 (patch) | |
tree | 8fe70e77c79575544f5c1c8fd674443fa98caed2 /indra/newview/lldrawpoolbump.h | |
parent | a1e6cbe4a802f92182163171e6743e7f63d89ace (diff) |
SL-16189 Optimize bindBumpMap
Diffstat (limited to 'indra/newview/lldrawpoolbump.h')
-rw-r--r-- | indra/newview/lldrawpoolbump.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/newview/lldrawpoolbump.h b/indra/newview/lldrawpoolbump.h index 476b1d41b7..bab160c34d 100644 --- a/indra/newview/lldrawpoolbump.h +++ b/indra/newview/lldrawpoolbump.h @@ -32,6 +32,8 @@ #include "lltextureentry.h" #include "lluuid.h" +#include <unordered_map> + class LLImageRaw; class LLSpatialGroup; class LLDrawInfo; @@ -161,7 +163,7 @@ private: static void onSourceLoaded( BOOL success, LLViewerTexture *src_vi, LLImageRaw* src, LLUUID& source_asset_id, EBumpEffect bump ); private: - typedef std::map<LLUUID, LLPointer<LLViewerTexture> > bump_image_map_t; + typedef std::unordered_map<LLUUID, LLPointer<LLViewerTexture> > bump_image_map_t; bump_image_map_t mBrightnessEntries; bump_image_map_t mDarknessEntries; }; |