Files
UnrealEngine/Engine/Source/Runtime/AutomationWorker/Private/AutomationAnalyticParams.h
2025-05-18 13:04:45 +08:00

47 lines
600 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
namespace EAutomationEventName
{
enum Type
{
FPSCapture,
AutomationTestResults,
NUM_ENGINE_EVENT_NAMES
};
}
namespace EAutomationAnalyticParam
{
enum Type
{
MapName,
TimeStamp,
Platform,
Spec,
CL,
FPS,
BuildConfiguration,
AverageFrameTime,
AverageGameThreadTime,
AverageRenderThreadTime,
AverageGPUTime,
PercentOfFramesAtLeast30FPS,
PercentOfFramesAtLeast60FPS,
TestName,
BeautifiedName,
ExecutionCount,
IsSuccess,
Duration,
ErrorCount,
WarningCount,
NUM_ENGINE_PARAMS
};
}