diff options
| author | Wu-cheng Li <wuchengli@google.com> | 2009-10-23 17:39:46 +0800 |
|---|---|---|
| committer | Wu-cheng Li <wuchengli@google.com> | 2009-10-29 13:20:26 +0800 |
| commit | 4cb04c4654e9718a73b378e7b9962dee454efa8d (patch) | |
| tree | b0ca9496027477f28833f0f85288bb6611f80c52 /include/ui/CameraHardwareInterface.h | |
| parent | 38a9becfdd23e582571f624b624680cc5938d423 (diff) | |
| download | frameworks_base-4cb04c4654e9718a73b378e7b9962dee454efa8d.zip frameworks_base-4cb04c4654e9718a73b378e7b9962dee454efa8d.tar.gz frameworks_base-4cb04c4654e9718a73b378e7b9962dee454efa8d.tar.bz2 | |
Use image rect information to display zoomed picture.
Diffstat (limited to 'include/ui/CameraHardwareInterface.h')
| -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, |
