diff options
author | Wu-cheng Li <wuchengli@google.com> | 2009-10-29 19:26:04 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2009-10-29 19:26:04 -0700 |
commit | 16d8f10ebf75e809cc14d866fded7749363b9d8f (patch) | |
tree | 250d3c87bbd9509501cf386bd03b6f92fbd8135e /include | |
parent | 5cecf74138ea56842463ec384ff04610c1247920 (diff) | |
parent | 4cb04c4654e9718a73b378e7b9962dee454efa8d (diff) | |
download | frameworks_base-16d8f10ebf75e809cc14d866fded7749363b9d8f.zip frameworks_base-16d8f10ebf75e809cc14d866fded7749363b9d8f.tar.gz frameworks_base-16d8f10ebf75e809cc14d866fded7749363b9d8f.tar.bz2 |
am 4cb04c46: Use image rect information to display zoomed picture.
Merge commit '4cb04c4654e9718a73b378e7b9962dee454efa8d' into eclair-mr2
* commit '4cb04c4654e9718a73b378e7b9962dee454efa8d':
Use image rect information to display zoomed picture.
Diffstat (limited to 'include')
-rw-r--r-- | include/ui/CameraHardwareInterface.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/ui/CameraHardwareInterface.h b/include/ui/CameraHardwareInterface.h index af40f31..240c134 100644 --- a/include/ui/CameraHardwareInterface.h +++ b/include/ui/CameraHardwareInterface.h @@ -25,6 +25,15 @@ #include <ui/Overlay.h> namespace android { +/** + * The size of image for display. + */ +typedef struct image_rect_struct +{ + uint32_t width; /* Image width */ + uint32_t height; /* Image height */ +} image_rect_type; + typedef void (*notify_callback)(int32_t msgType, int32_t ext1, |