testss
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
using System;
|
||||
|
||||
namespace UnityEngine.Rendering
|
||||
{
|
||||
/// <summary>
|
||||
/// Utility class to connect SRP to automated test framework.
|
||||
/// </summary>
|
||||
public static class XRGraphicsAutomatedTests
|
||||
{
|
||||
// XR tests can be enabled from the command line. Cache result to avoid GC.
|
||||
static bool activatedFromCommandLine { get => Array.Exists(Environment.GetCommandLineArgs(), arg => arg == "-xr-tests"); }
|
||||
|
||||
/// <summary>
|
||||
/// Used by render pipelines to initialize XR tests.
|
||||
/// </summary>
|
||||
public static bool enabled { get; } = activatedFromCommandLine;
|
||||
|
||||
/// <summary>
|
||||
/// Set by automated test framework and read by render pipelines.
|
||||
/// </summary>
|
||||
public static bool running = false;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user