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

Implement search for symbol matching function name when opening source view.

This commit is contained in:
Bartosz Taudul
2024-01-02 15:07:44 +01:00
parent cf412bfb2e
commit 9a5fb0bb51
2 changed files with 51 additions and 0 deletions
+1
View File
@@ -112,6 +112,7 @@ public:
void NotifyRootWindowSize( float w, float h ) { m_rootWidth = w; m_rootHeight = h; }
void ViewSource( const char* fileName, int line );
void ViewSource( const char* fileName, int line, const char* functionName );
void ViewSymbol( const char* fileName, int line, uint64_t baseAddr, uint64_t symAddr );
bool ViewDispatch( const char* fileName, int line, uint64_t symAddr );