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

Abstracted away one-frame-decay values.

This commit is contained in:
Bartosz Taudul
2018-08-05 16:45:34 +02:00
parent 44e027ad11
commit 1d0203ac17
5 changed files with 56 additions and 28 deletions
+3 -4
View File
@@ -8,6 +8,7 @@
#include <thread>
#include <vector>
#include "TracyDecayValue.hpp"
#include "TracyVector.hpp"
#include "TracyWorker.hpp"
#include "tracy_flat_hash_map.hpp"
@@ -185,11 +186,9 @@ private:
const ZoneEvent* m_zoneInfoWindow;
const ZoneEvent* m_zoneHighlight;
uint64_t m_zoneSrcLocHighlight;
bool m_zoneSrcLocHighlightActive;
DecayValue<uint64_t> m_zoneSrcLocHighlight;
LockHighlight m_lockHighlight;
const MessageData* m_msgHighlight;
bool m_msgHighlightActive;
DecayValue<const MessageData*> m_msgHighlight;
const GpuEvent* m_gpuInfoWindow;
const GpuEvent* m_gpuHighlight;
uint64_t m_gpuInfoWindowThread;