Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3c66fe3f authored by Kevin Chyn's avatar Kevin Chyn Committed by Android (Google) Code Review
Browse files

Merge "Add face acquired constants"

parents f89fea15 b480f011
Loading
Loading
Loading
Loading
+14 −1
Original line number Diff line number Diff line
@@ -244,10 +244,23 @@ enum FaceAcquiredInfo : int32_t {
     */
    RECALIBRATE = 13,

    /**
     * The face is too different from a previous acquisition. This condition
     * only applies to enrollment. This can happen if the user passes the
     * device to someone else in the middle of enrollment.
     */
    TOO_DIFFERENT = 14,

    /**
     * The face is too similar to a previous acquisition. This condition only
     * applies to enrollment. The user should change their pose.
     */
    TOO_SIMILAR = 15,

    /**
     * Used to enable a vendor-specific acquisition message.
     */
    VENDOR = 14
    VENDOR = 16
};

/**