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

Commit b480f011 authored by Kevin Chyn's avatar Kevin Chyn
Browse files

Add face acquired constants

Fixes: 118382625

Test: Builds
Change-Id: I3c9203c7e593aee3b110dd00e31687e364ff78bc
parent 70b2eb10
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
};

/**