1
0
mirror of https://github.com/wolfpld/tracy.git synced 2025-03-20 07:40:02 +08:00

Implement search for matching source locations.

This commit is contained in:
Bartosz Taudul
2018-03-04 16:52:45 +01:00
parent f8c5f28372
commit b48602f5d1
2 changed files with 33 additions and 0 deletions
+2
View File
@@ -101,6 +101,8 @@ public:
const char* GetThreadString( uint64_t id ) const;
const SourceLocation& GetSourceLocation( int32_t srcloc ) const;
std::vector<int32_t> GetMatchingSourceLocation( const char* query ) const;
NonRecursiveBenaphore& GetMbpsDataLock() { return m_mbpsData.lock; }
const std::vector<float>& GetMbpsData() const { return m_mbpsData.mbps; }
float GetCompRatio() const { return m_mbpsData.compRatio; }