summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorWu-cheng Li <wuchengli@google.com>2009-10-28 23:35:53 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2009-10-28 23:35:53 -0700
commite9f91e2372980d4894fc4ac69d207f77282d52d6 (patch)
tree6c110daab109f3fee5f8668fd4ba9ffcd96b5d3c /include
parent0bb0e9a2b14680662620cf3e74aaaa730b360da2 (diff)
parent4cb04c4654e9718a73b378e7b9962dee454efa8d (diff)
downloadframeworks_base-e9f91e2372980d4894fc4ac69d207f77282d52d6.zip
frameworks_base-e9f91e2372980d4894fc4ac69d207f77282d52d6.tar.gz
frameworks_base-e9f91e2372980d4894fc4ac69d207f77282d52d6.tar.bz2
am 4cb04c46: Use image rect information to display zoomed picture.
Merge commit '4cb04c4654e9718a73b378e7b9962dee454efa8d' into eclair-plus-aosp * commit '4cb04c4654e9718a73b378e7b9962dee454efa8d': Use image rect information to display zoomed picture.
Diffstat (limited to 'include')
-rw-r--r--include/ui/CameraHardwareInterface.h9
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,