[lineage-18.0] IFingerprintInscreen: Allow HALs to control position and size

* These are hardware-specific properties. Allow HALs to control them
directly instead of relying on a system property

Change-Id: I36355886cc115ae2a423cbbca6044daec43ee454
Signed-off-by: baalajimaestro <me@baalajimaestro.me>
This commit is contained in:
Peter Cai 2019-07-02 15:47:25 +08:00 committed by Alexander Koskovich
parent 00cbc89715
commit b882f9d5bd
1 changed files with 8 additions and 0 deletions

View File

@ -19,6 +19,14 @@ package vendor.aospa.biometrics.fingerprint.inscreen@1.0;
import IFingerprintInscreenCallback;
interface IFingerprintInscreen {
/**
* Information on the position of the scanner
* Note: X and Y are the left-upper corner of the
* FOD view, not the center.
*/
getPositionX() generates (int32_t x);
getPositionY() generates (int32_t y);
getSize() generates (int32_t size);
/**
* Called when fingerprint enrollment started
*/