Skip to content
Snippets Groups Projects
Commit 5bbc01a3 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Small boosty tweaks

parent ada4e7ae
No related branches found
No related tags found
2 merge requests!3Update to main branch,!2Rebase onto current main branch
...@@ -555,7 +555,7 @@ class LLAudioDecodeMgr::Impl ...@@ -555,7 +555,7 @@ class LLAudioDecodeMgr::Impl
protected: protected:
std::deque<LLUUID> mDecodeQueue; std::deque<LLUUID> mDecodeQueue;
std::unordered_map<LLUUID, LLPointer<LLVorbisDecodeState>> mDecodes; boost::unordered_map<LLUUID, LLPointer<LLVorbisDecodeState>> mDecodes;
}; };
LLAudioDecodeMgr::Impl::Impl() LLAudioDecodeMgr::Impl::Impl()
......
...@@ -223,7 +223,7 @@ namespace LLPerfStats ...@@ -223,7 +223,7 @@ namespace LLPerfStats
static void updateMeanFrameTime(U64 tot_frame_time_raw); static void updateMeanFrameTime(U64 tot_frame_time_raw);
// StatsArray is a uint64_t for each possible statistic type. // StatsArray is a uint64_t for each possible statistic type.
using StatsArray = std::array<uint64_t, static_cast<size_t>(LLPerfStats::StatType_t::STATS_COUNT)>; using StatsArray = std::array<uint64_t, static_cast<size_t>(LLPerfStats::StatType_t::STATS_COUNT)>;
using StatsMap = std::unordered_map<LLUUID, StatsArray, boost::hash<LLUUID>>; using StatsMap = boost::unordered_map<LLUUID, StatsArray>;
using StatsTypeMatrix = std::array<StatsMap, static_cast<size_t>(LLPerfStats::ObjType_t::OT_COUNT)>; using StatsTypeMatrix = std::array<StatsMap, static_cast<size_t>(LLPerfStats::ObjType_t::OT_COUNT)>;
using StatsSummaryArray = std::array<StatsArray, static_cast<size_t>(LLPerfStats::ObjType_t::OT_COUNT)>; using StatsSummaryArray = std::array<StatsArray, static_cast<size_t>(LLPerfStats::ObjType_t::OT_COUNT)>;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment