You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UE-133314 #rb Michael.Sartain #preflight 6203cfda724404041858c36c [CL 18918198 by Brandon Schaefer in ue5-main branch]
38 lines
669 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|