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

Delay insertion of postponed plot items.

This further reduces number of memmoves that need to be performed on a
vector, which results in net increased throughput.
This commit is contained in:
Bartosz Taudul
2017-10-21 13:32:51 +02:00
parent 75e3dd175a
commit c28b3a420f
2 changed files with 4 additions and 0 deletions
+1
View File
@@ -101,6 +101,7 @@ private:
bool enabled;
Vector<PlotItem*> data;
Vector<PlotItem*> postpone;
uint64_t postponeTime;
};
void Worker();