Minor adjustments to the profiling tools code

This commit is contained in:
Wojciech Figat
2022-12-07 15:27:40 +01:00
parent f426c75696
commit 3017010ef4
6 changed files with 13 additions and 7 deletions

View File

@@ -22,7 +22,7 @@ public:
/// <summary>
/// Represents single CPU profiling event data.
/// </summary>
API_STRUCT() struct Event
API_STRUCT(NoDefault) struct Event
{
DECLARE_SCRIPTING_TYPE_MINIMAL(Event);

View File

@@ -24,7 +24,7 @@ public:
/// <summary>
/// Represents single CPU profiling event data.
/// </summary>
API_STRUCT() struct Event
API_STRUCT(NoDefault) struct Event
{
DECLARE_SCRIPTING_TYPE_MINIMAL(Event);

View File

@@ -19,7 +19,7 @@ public:
/// <summary>
/// The GPU memory stats.
/// </summary>
API_STRUCT() struct MemoryStatsGPU
API_STRUCT(NoDefault) struct MemoryStatsGPU
{
DECLARE_SCRIPTING_TYPE_MINIMAL(MemoryStatsGPU);
@@ -37,7 +37,7 @@ public:
/// <summary>
/// Engine profiling data header. Contains main info and stats.
/// </summary>
API_STRUCT() struct MainStats
API_STRUCT(NoDefault) struct MainStats
{
DECLARE_SCRIPTING_TYPE_MINIMAL(MainStats);
@@ -90,7 +90,7 @@ public:
/// <summary>
/// The CPU thread stats.
/// </summary>
API_STRUCT() struct ThreadStats
API_STRUCT(NoDefault) struct ThreadStats
{
DECLARE_SCRIPTING_TYPE_MINIMAL(ThreadStats);