diff options
author | Mathias Agopian <mathias@google.com> | 2011-07-22 15:25:20 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2011-07-22 15:25:20 -0700 |
commit | 6dc49c09bc072a5b14225cdce2ca4e8c3f0edab1 (patch) | |
tree | c7979953ee6d993e37829578ee3abd2b9322da32 | |
parent | bb66c9b5a9c16dee93559eb738746a2d0a9b2db3 (diff) | |
download | frameworks_native-6dc49c09bc072a5b14225cdce2ca4e8c3f0edab1.zip frameworks_native-6dc49c09bc072a5b14225cdce2ca4e8c3f0edab1.tar.gz frameworks_native-6dc49c09bc072a5b14225cdce2ca4e8c3f0edab1.tar.bz2 |
Fix typo which caused invalid rotations to be returned with NATIVE_WINDOW_TRANSFORM_HINT
Bug: 4487161
Change-Id: Ib2dfbbef15397b6d90695bd27f25849ca20704f1
-rw-r--r-- | services/surfaceflinger/SurfaceTextureLayer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/surfaceflinger/SurfaceTextureLayer.cpp b/services/surfaceflinger/SurfaceTextureLayer.cpp index 40659d4..91e010f 100644 --- a/services/surfaceflinger/SurfaceTextureLayer.cpp +++ b/services/surfaceflinger/SurfaceTextureLayer.cpp @@ -64,7 +64,7 @@ status_t SurfaceTextureLayer::queueBuffer(int buf, int64_t timestamp, if (orientation & Transform::ROT_INVALID) { orientation = 0; } - *outTransform = layer->getOrientation(); + *outTransform = orientation; } return res; |