Files
2025-05-18 13:04:45 +08: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;
}
}
}