Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wolfpld/tracy.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBartosz Taudul <wolf@nereid.pl>2022-08-15 23:48:00 +0300
committerBartosz Taudul <wolf@nereid.pl>2022-08-15 23:48:00 +0300
commitfa0322f6b4c91fe79d92d38f10622559214b4e2e (patch)
tree8f9b52a9b5026951d3daeadd1f764f4986b0f652 /server/TracySourceView.hpp
parentd3cb8ccef2dd1182ee21be3f2c116c156f3b0d4c (diff)
Push big font to source view.
Diffstat (limited to 'server/TracySourceView.hpp')
-rw-r--r--server/TracySourceView.hpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/server/TracySourceView.hpp b/server/TracySourceView.hpp
index 3441c62b..162305d6 100644
--- a/server/TracySourceView.hpp
+++ b/server/TracySourceView.hpp
@@ -143,7 +143,7 @@ private:
public:
SourceView();
- void UpdateFont( ImFont* fixed, ImFont* small ) { m_font = fixed; m_smallFont = small; }
+ void UpdateFont( ImFont* fixed, ImFont* small, ImFont* big ) { m_font = fixed; m_smallFont = small; m_bigFont = big; }
void SetCpuId( uint32_t cpuid );
void OpenSource( const char* fileName, int line, const View& view, const Worker& worker );
@@ -200,6 +200,7 @@ private:
ImFont* m_font;
ImFont* m_smallFont;
+ ImFont* m_bigFont;
uint64_t m_symAddr;
uint64_t m_baseAddr;
uint64_t m_targetAddr;