diff options
author | Adam Lesinski <adamlesinski@google.com> | 2015-05-14 14:28:32 -0700 |
---|---|---|
committer | Adam Lesinski <adamlesinski@google.com> | 2015-05-15 14:58:28 -0700 |
commit | 7eb14594165223cb288d4f0ca8510a9e27744a92 (patch) | |
tree | ecb892722d130f870c92b2a2e941335b1866bdeb /include/android | |
parent | 2c237ee1d5961b9d11618e0c5a97b3bb7fb694b2 (diff) | |
download | frameworks_native-7eb14594165223cb288d4f0ca8510a9e27744a92.zip frameworks_native-7eb14594165223cb288d4f0ca8510a9e27744a92.tar.gz frameworks_native-7eb14594165223cb288d4f0ca8510a9e27744a92.tar.bz2 |
Adding round qualifier constant to native API.
Change-Id: I43e6c029412d0ed1d345c16fdce90e2879c52a8e
Diffstat (limited to 'include/android')
-rw-r--r-- | include/android/configuration.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/include/android/configuration.h b/include/android/configuration.h index be00066..7573cca 100644 --- a/include/android/configuration.h +++ b/include/android/configuration.h @@ -78,6 +78,10 @@ enum { ACONFIGURATION_SCREENLONG_NO = 0x1, ACONFIGURATION_SCREENLONG_YES = 0x2, + ACONFIGURATION_SCREENROUND_ANY = 0x00, + ACONFIGURATION_SCREENROUND_NO = 0x1, + ACONFIGURATION_SCREENROUND_YES = 0x2, + ACONFIGURATION_UI_MODE_TYPE_ANY = 0x00, ACONFIGURATION_UI_MODE_TYPE_NORMAL = 0x01, ACONFIGURATION_UI_MODE_TYPE_DESK = 0x02, @@ -115,6 +119,7 @@ enum { ACONFIGURATION_UI_MODE = 0x1000, ACONFIGURATION_SMALLEST_SCREEN_SIZE = 0x2000, ACONFIGURATION_LAYOUTDIR = 0x4000, + ACONFIGURATION_SCREEN_ROUND = 0x8000, ACONFIGURATION_MNC_ZERO = 0xffff, }; @@ -288,6 +293,16 @@ int32_t AConfiguration_getScreenLong(AConfiguration* config); void AConfiguration_setScreenLong(AConfiguration* config, int32_t screenLong); /** + * Return the current ACONFIGURATION_SCREENROUND_* set in the configuration. + */ +int32_t AConfiguration_getScreenRound(AConfiguration* config); + +/** + * Set the current screen round in the configuration. + */ +void AConfiguration_setScreenRound(AConfiguration* config, int32_t screenRound); + +/** * Return the current ACONFIGURATION_UI_MODE_TYPE_* set in the configuration. */ int32_t AConfiguration_getUiModeType(AConfiguration* config); |