Skip to content
Snippets Groups Projects
Commit e8daeb17 authored by Richard Linden's avatar Richard Linden
Browse files

SH-3931 WIP Interesting: Add graphs to visualize scene load metrics

clean up of llscenemonitor.cpp
parent 11cee0c1
No related branches found
No related tags found
No related merge requests found
......@@ -496,14 +496,6 @@ void LLSceneMonitor::fetchQueryResult()
}
}
void LLSceneMonitor::addMonitorResult()
{
ll_monitor_result_t result;
result.mTimeStamp = LLImageGL::sLastFrameTime;
result.mDiff = mDiffResult;
mMonitorResults.push_back(result);
}
//dump results to a file _scene_xmonitor_results.csv
void LLSceneMonitor::dumpToFile(std::string file_name)
{
......
......@@ -73,7 +73,6 @@ private:
LLRenderTarget& getCaptureTarget();
void generateDitheringTexture(S32 width, S32 height);
void addMonitorResult();
private:
bool mEnabled;
bool mDebugViewerVisible;
......@@ -105,14 +104,6 @@ private:
std::vector<LLAnimPauseRequest> mAvatarPauseHandles;
LLTrace::ExtendablePeriodicRecording* mRecording;
//---------------------------------------
typedef struct _monitor_result
{
F32 mTimeStamp;
F32 mDiff;
} ll_monitor_result_t;
std::vector<ll_monitor_result_t> mMonitorResults;
};
class LLSceneMonitorView : public LLFloater
......
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