commit | d92bf3b8c41967fc76a8dcb503ed68e27d80ffb6 | [log] [tgz] |
---|---|---|
author | Victor Tasayco Loarte <[email protected]> | Thu Aug 25 22:59:50 2016 +0000 |
committer | android-build-merger <[email protected]> | Thu Aug 25 22:59:50 2016 +0000 |
tree | d9cc9de02ce64a726085e2b0cd6486d21cc6d8cd | |
parent | d6cb2ce9946ea04259f544285157ed0c88f1d753 [diff] | |
parent | f5b262ecb72a408eb2aed04dbf2ae1cfa4021b2c [diff] |
display: invert touch cursor coordinate am: 71806925d3 am: c7456da53d am: 780caf6cb8 am: f5b262ecb7 Change-Id: Iab93a3b50b04314055855096911bbe6514f43df1
diff --git a/merrifield/ips/tangier/TngCursorPlane.cpp b/merrifield/ips/tangier/TngCursorPlane.cpp index 8ce5af7..c229711 100644 --- a/merrifield/ips/tangier/TngCursorPlane.cpp +++ b/merrifield/ips/tangier/TngCursorPlane.cpp
@@ -99,6 +99,11 @@ cursorSize = w; } +#if ENABLE_ROTATION_180 + dstX = mModeInfo.hdisplay - dstX - cursorSize; + dstY = mModeInfo.vdisplay - dstY - cursorSize; +#endif + uint32_t cntr = 0; if (64 <= cursorSize && cursorSize < 128) { cursorSize = 64;