···11+---
22+- mr.2614
33+---
14### Added
25- New UI button to the Android About page for scanning cardboard calibration QR codes and saving them to device
36
···2424 * @ingroup aux_util
2525 */
26262727+enum u_cardboard_vertical_alignment
2828+{
2929+ //! device rests against a fixed bottom tray
3030+ U_CARDBOARD_VERTICAL_ALIGNMENT_BOTTOM = 0,
3131+3232+ //! device screen assumed to be centered w.r.t. lenses
3333+ U_CARDBOARD_VERTICAL_ALIGNMENT_CENTER = 1,
3434+3535+ //! device rests against a fixed top tray
3636+ U_CARDBOARD_VERTICAL_ALIGNMENT_TOP = 2,
3737+};
3838+2739/*!
2840 * These are the values that you need to supply to the distortion code to setup
2941 * a @ref u_cardboard_distortion properly.
···56685769 //! Fov values that the cardboard configuration has given us.
5870 struct xrt_fov fov;
7171+7272+ //! The vertical screen alignment
7373+ enum u_cardboard_vertical_alignment vertical_alignment;
5974};
60756176/*!