// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using UnityEngine;
namespace Microsoft.MixedReality.OpenXR
{
///
/// Provides methods to interact with OpenXR time, including retrieving the
/// predicting display times, and converting XR time to Query Performance Counter (QPC) time.
///
public class OpenXRTime
{
///
/// Get the current OpenXRTime.
///
public static OpenXRTime Current => m_current;
///
/// Retrieves the predicted display time for the current frame based on the specified frame timing.
///
///
/// Will return 0 if called from Unity Editor.
///
/// The time of a frame in pipelined rendering for which to retrieve the predicted display time.
/// The predicted display time if available, otherwise 0
public long GetPredictedDisplayTimeInXrTime(FrameTime frameTime)
{
return NativeLib.GetPredictedDisplayTimeInXrTime(frameTime);
}
///
/// Converts a time value from XR time to Query Performance Counter (QPC) time.
///
///
/// Will return 0 if called from Unity Editor.
///
/// The time in XR time units to be converted.
/// The equivalent time in QPC units. If the conversion cannot be performed the function returns 0.
public long ConvertXrTimeToQpcTime(long xrTime)
{
return NativeLib.ConvertXrTimeToQpcTime(xrTime);
}
private OpenXRTime() { }// use static Current property instead.
private static readonly OpenXRTime m_current = new();
}
}