diff options
| author | Erik Kundiman <erik@megapahit.org> | 2024-08-16 15:48:56 +0800 | 
|---|---|---|
| committer | Erik Kundiman <erik@megapahit.org> | 2024-08-16 15:48:56 +0800 | 
| commit | 9f6d46604f628767f3ac701671d5678594852156 (patch) | |
| tree | 13f93c23b7795344d3fcc3a9ea0f8fce4b86ffd7 | |
| parent | a8308c46de81023d56a9e4b152290719a2d9c900 (diff) | |
| parent | 10ef293bc93230437d8aa3b17fcc1bfdc78f6ba8 (diff) | |
Merge branch 'release/webrtc-voice' of https://github.com/secondlife/viewer.git into webrtc-voice
| -rw-r--r-- | indra/llcommon/lltracethreadrecorder.cpp | 45 | ||||
| -rw-r--r-- | indra/newview/llviewertexture.cpp | 2 | 
2 files changed, 23 insertions, 24 deletions
| diff --git a/indra/llcommon/lltracethreadrecorder.cpp b/indra/llcommon/lltracethreadrecorder.cpp index be3e585ef8..375cb050cc 100644 --- a/indra/llcommon/lltracethreadrecorder.cpp +++ b/indra/llcommon/lltracethreadrecorder.cpp @@ -159,7 +159,8 @@ AccumulatorBufferGroup* ThreadRecorder::activate( AccumulatorBufferGroup* record  ThreadRecorder::active_recording_list_t::iterator ThreadRecorder::bringUpToDate( AccumulatorBufferGroup* recording )  {  #if LL_TRACE_ENABLED -    if (mActiveRecordings.empty()) return mActiveRecordings.end(); +    if (mActiveRecordings.empty()) +        return mActiveRecordings.end();      mActiveRecordings.back()->mPartialRecording.sync();      BlockTimer::updateTimes(); @@ -202,7 +203,7 @@ ThreadRecorder::active_recording_list_t::iterator ThreadRecorder::bringUpToDate(  #endif  } -void ThreadRecorder::deactivate( AccumulatorBufferGroup* recording ) +void ThreadRecorder::deactivate(AccumulatorBufferGroup* recording)  {  #if LL_TRACE_ENABLED      active_recording_list_t::iterator recording_it = bringUpToDate(recording); @@ -228,9 +229,10 @@ void ThreadRecorder::deactivate( AccumulatorBufferGroup* recording )  #endif  } -ThreadRecorder::ActiveRecording::ActiveRecording( AccumulatorBufferGroup* target ) +ThreadRecorder::ActiveRecording::ActiveRecording(AccumulatorBufferGroup* target)  :   mTargetRecording(target) -{} +{ +}  void ThreadRecorder::ActiveRecording::movePartialToTarget()  { @@ -243,30 +245,30 @@ void ThreadRecorder::ActiveRecording::movePartialToTarget()  // called by child thread -void ThreadRecorder::addChildRecorder( class ThreadRecorder* child ) +void ThreadRecorder::addChildRecorder(ThreadRecorder* child)  {  #if LL_TRACE_ENABLED -    { LLMutexLock lock(&mChildListMutex); -        mChildThreadRecorders.push_back(child); -    } +    LLMutexLock lock(&mChildListMutex); +    mChildThreadRecorders.push_back(child);  #endif  }  // called by child thread -void ThreadRecorder::removeChildRecorder( class ThreadRecorder* child ) +void ThreadRecorder::removeChildRecorder(ThreadRecorder* child)  {  #if LL_TRACE_ENABLED -    { LLMutexLock lock(&mChildListMutex); -        mChildThreadRecorders.remove(child); -    } +    LLMutexLock lock(&mChildListMutex); +    mChildThreadRecorders.remove(child);  #endif  }  void ThreadRecorder::pushToParent()  {  #if LL_TRACE_ENABLED -    { LLMutexLock lock(&mSharedRecordingMutex); -        LLTrace::get_thread_recorder()->bringUpToDate(&mThreadRecordingBuffers); +    if (ThreadRecorder* recorder = LLTrace::get_thread_recorder()) +    { +        LLMutexLock lock(&mSharedRecordingMutex); +        recorder->bringUpToDate(&mThreadRecordingBuffers);          mSharedRecordingBuffers.append(mThreadRecordingBuffers);          mThreadRecordingBuffers.reset();      } @@ -278,15 +280,14 @@ void ThreadRecorder::pullFromChildren()  {  #if LL_TRACE_ENABLED      LL_PROFILE_ZONE_SCOPED_CATEGORY_STATS; -    if (mActiveRecordings.empty()) return; - -    { LLMutexLock lock(&mChildListMutex); - +    if (!mActiveRecordings.empty()) +    { +        LLMutexLock lock(&mChildListMutex);          AccumulatorBufferGroup& target_recording_buffers = mActiveRecordings.back()->mPartialRecording;          target_recording_buffers.sync();          for (LLTrace::ThreadRecorder* rec : mChildThreadRecorders) -        { LLMutexLock lock(&(rec->mSharedRecordingMutex)); - +        { +            LLMutexLock lock(&(rec->mSharedRecordingMutex));              target_recording_buffers.merge(rec->mSharedRecordingBuffers);              rec->mSharedRecordingBuffers.reset();          } @@ -294,13 +295,11 @@ void ThreadRecorder::pullFromChildren()  #endif  } - -void set_master_thread_recorder( ThreadRecorder* recorder ) +void set_master_thread_recorder(ThreadRecorder* recorder)  {      sMasterThreadRecorder = recorder;  } -  ThreadRecorder* get_master_thread_recorder()  {      return sMasterThreadRecorder; diff --git a/indra/newview/llviewertexture.cpp b/indra/newview/llviewertexture.cpp index 9aee1c0caf..03dca1e5f3 100644 --- a/indra/newview/llviewertexture.cpp +++ b/indra/newview/llviewertexture.cpp @@ -834,7 +834,7 @@ S32 LLViewerTexture::getTotalNumFaces() const  S32 LLViewerTexture::getNumFaces(U32 ch) const  {      llassert(ch < LLRender::NUM_TEXTURE_CHANNELS); -    return mNumFaces[ch]; +    return ch < LLRender::NUM_TEXTURE_CHANNELS ? mNumFaces[ch] : 0;  } | 
