// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace Microsoft.MixedReality.OpenXR
{
///
/// Choose the predicted display time of a frame in pipelined rendering.
///
public enum FrameTime
{
///
/// The time in update thread using previous frame's predicted time + duration.
///
OnUpdate = 0,
///
/// The time in render thread using current frame's predicted time.
///
OnBeforeRender
}
}