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

Move some view data to a separate structure.

This commit is contained in:
Bartosz Taudul
2019-08-28 19:35:54 +02:00
parent 38bfae13dd
commit 949c9cb121
5 changed files with 172 additions and 151 deletions
+17
View File
@@ -0,0 +1,17 @@
#ifndef __TRACYVIEWDATA_HPP__
#define __TRACYVIEWDATA_HPP__
#include <stdint.h>
namespace tracy
{
struct ViewData
{
int64_t zvStart = 0;
int64_t zvEnd = 0;
};
}
#endif