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.pld@gmail.com>2019-08-13 04:20:33 +0300
committerBartosz Taudul <wolf.pld@gmail.com>2019-08-13 16:16:46 +0300
commit874a2596f7308818415cf432ebc4b47c3c151bfc (patch)
treece2b632016bdd1fd62dd292aa5a9f95ad03e4491 /server/TracyView.hpp
parentb313e46139648d1765a9bad05b580d03661d7a82 (diff)
Improve context switches drawing.
Diffstat (limited to 'server/TracyView.hpp')
-rw-r--r--server/TracyView.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/TracyView.hpp b/server/TracyView.hpp
index a271e5de..0c330b6f 100644
--- a/server/TracyView.hpp
+++ b/server/TracyView.hpp
@@ -108,7 +108,7 @@ private:
bool DrawZoneFramesHeader();
bool DrawZoneFrames( const FrameData& frames );
void DrawZones();
- void DrawContextSwitches( const ContextSwitch* ctx, double pxns, const ImVec2& wpos, int offset );
+ void DrawContextSwitches( const ContextSwitch* ctx, double pxns, int64_t nspx, const ImVec2& wpos, int offset );
int DispatchZoneLevel( const Vector<ZoneEvent*>& vec, bool hover, double pxns, int64_t nspx, const ImVec2& wpos, int offset, int depth, float yMin, float yMax );
int DrawZoneLevel( const Vector<ZoneEvent*>& vec, bool hover, double pxns, int64_t nspx, const ImVec2& wpos, int offset, int depth, float yMin, float yMax );
int SkipZoneLevel( const Vector<ZoneEvent*>& vec, bool hover, double pxns, int64_t nspx, const ImVec2& wpos, int offset, int depth, float yMin, float yMax );