summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorWu-cheng Li <wuchengli@google.com>2009-10-23 17:39:46 +0800
committerWu-cheng Li <wuchengli@google.com>2009-10-29 13:20:26 +0800
commit986e0dcf7ad2bbf0ec717430cd4e84ee82a3c6ea (patch)
tree6e5cc79434d23a456184af9067260bc15df05c37 /include
parentd6223663f76f435e94eff7fe98505054ff06a47f (diff)
downloadframeworks_native-986e0dcf7ad2bbf0ec717430cd4e84ee82a3c6ea.zip
frameworks_native-986e0dcf7ad2bbf0ec717430cd4e84ee82a3c6ea.tar.gz
frameworks_native-986e0dcf7ad2bbf0ec717430cd4e84ee82a3c6ea.tar.bz2
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,