diff options
author | Yin-Chia Yeh <yinchiayeh@google.com> | 2014-05-28 16:36:05 -0700 |
---|---|---|
committer | Yin-Chia Yeh <yinchiayeh@google.com> | 2014-05-30 12:05:48 -0700 |
commit | 97f1c854993a65b2c700426a1e3a83b23ea65337 (patch) | |
tree | 9bdfdf2c0abb2281fcd45c03a4221d4915f3468f /api | |
parent | f5fe63c35cb804e4dba87037c7af29e536963be0 (diff) | |
download | frameworks_base-97f1c854993a65b2c700426a1e3a83b23ea65337.zip frameworks_base-97f1c854993a65b2c700426a1e3a83b23ea65337.tar.gz frameworks_base-97f1c854993a65b2c700426a1e3a83b23ea65337.tar.bz2 |
Camera2: update the range of metering weight
Limit the range of metering weight to 0-1000.
Bug: 15315352
Change-Id: Iceb13b72508cb3c9f758bdcb1b69b6b11ec5aaf8
Diffstat (limited to 'api')
-rw-r--r-- | api/current.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt index 2b6189a..7d5810e 100644 --- a/api/current.txt +++ b/api/current.txt @@ -12668,6 +12668,9 @@ package android.hardware.camera2.params { method public int getWidth(); method public int getX(); method public int getY(); + field public static final int METERING_WEIGHT_DONT_CARE = 0; // 0x0 + field public static final int METERING_WEIGHT_MAX = 1000; // 0x3e8 + field public static final int METERING_WEIGHT_MIN = 0; // 0x0 } public final class RggbChannelVector { |