/// <summary>
    /// Sets the low Persistence mode.
    /// </summary>
    /// <param name="on">If set to <c>true</c> on.</param>
    public static void SetLowPersistenceMode(bool on)
    {
        if (HMD == null || !SupportedPlatform)
        {
            return;
        }

        uint caps = HMD.GetEnabledCaps();

        if (on)
        {
            caps |= (uint)ovrHmdCaps.ovrHmdCap_LowPersistence;
        }
        else
        {
            caps &= ~(uint)ovrHmdCaps.ovrHmdCap_LowPersistence;
        }

        HMD.SetEnabledCaps(caps);
    }