summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2010-10-21 00:26:22 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2010-10-21 00:26:22 -0700
commitccacbce375af6422fa24f81bdc771a5460f60fed (patch)
tree2f8b40fe05cd925e207f1671c9321f703c88007d
parent4829b184f15350de20096a97e583ed4c2b3d6427 (diff)
parent937af9b7136a8b692812bc47eaeb9a3e255c46a5 (diff)
downloadlibhardware-ccacbce375af6422fa24f81bdc771a5460f60fed.tar.gz
am 937af9b7: fix part of [Issue 3114236] [Crespo] The order of FLIP_H and ROT_90 is different from other devices
Merge commit '937af9b7136a8b692812bc47eaeb9a3e255c46a5' into gingerbread-plus-aosp * commit '937af9b7136a8b692812bc47eaeb9a3e255c46a5': fix part of [Issue 3114236] [Crespo] The order of FLIP_H and ROT_90 is different from other devices
-rw-r--r--include/hardware/overlay.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hardware/overlay.h b/include/hardware/overlay.h
index 42fb0145..c56a974d 100644
--- a/include/hardware/overlay.h
+++ b/include/hardware/overlay.h
@@ -54,9 +54,9 @@ enum {
/* values for copybit_set_parameter(OVERLAY_TRANSFORM) */
enum {
/* flip source image horizontally */
- OVERLAY_TRANSFORM_FLIP_H = HAL_TRANSFORM_FLIP_V,
+ OVERLAY_TRANSFORM_FLIP_H = HAL_TRANSFORM_FLIP_H,
/* flip source image vertically */
- OVERLAY_TRANSFORM_FLIP_V = HAL_TRANSFORM_FLIP_H,
+ OVERLAY_TRANSFORM_FLIP_V = HAL_TRANSFORM_FLIP_V,
/* rotate source image 90 degrees */
OVERLAY_TRANSFORM_ROT_90 = HAL_TRANSFORM_ROT_90,
/* rotate source image 180 degrees */