Files
UnrealEngineUWP/Engine/Source/Programs/AutomationTool/Gauntlet/Platform/Linux/Gauntlet.LinuxPGO.cs
Brandon Schaefer e65e4e342c Add Linux support for Gauntlet
#jira UE-133314
#rb Michael.Sartain
#preflight 6203cfda724404041858c36c

[CL 18918198 by Brandon Schaefer in ue5-main branch]
2022-02-09 10:41:17 -05:00

38 lines
669 B
C#

// Copyright Epic Games, Inc. All Rights Reserved.
using UnrealBuildTool;
namespace Gauntlet
{
/// <summary>
/// Skeleton Linux PGO platform implementation (primarily used to test PGO locally with editor builds)
/// </summary>
internal class LinuxPGOPlatform : IPGOPlatform
{
public UnrealTargetPlatform GetPlatform()
{
return UnrealTargetPlatform.Linux;
}
public void GatherResults(string ArtifactPath)
{
}
public void ApplyConfiguration(PGOConfig Config)
{
}
public bool TakeScreenshot(ITargetDevice Device, string ScreenshotDirectory, out string ImageFilename)
{
ImageFilename = string.Empty;
return false;
}
}
}