// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace Microsoft.MixedReality.Toolkit.XRSDK.OpenXR
{
///
/// Enumeration defining how holograms are stabilized during reprojection.
///
public enum HolographicReprojectionMethod
{
///
/// Turns any reprojection off.
///
NoReprojection = -1,
///
/// Use the depth buffer.
///
Depth = 0,
///
/// Automatically-placed plane based on the depth buffer.
///
PlanarFromDepth = 1,
///
/// Manually-placed plane.
///
PlanarManual = 2,
///
/// Reprojection for an orientation-only experience.
///
OrientationOnly = 3,
}
}