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

Add sub progress display.

This commit is contained in:
Bartosz Taudul
2018-07-28 18:56:52 +02:00
parent 3a401106b0
commit a14238c199
3 changed files with 16 additions and 0 deletions
+2
View File
@@ -49,6 +49,8 @@ struct LoadProgress
{
std::atomic<uint64_t> total = 0;
std::atomic<uint64_t> progress = 0;
std::atomic<uint64_t> subTotal = 0;
std::atomic<uint64_t> subProgress = 0;
};
class Worker