diff options
| author | 2012-04-12 19:36:42 -0700 | |
|---|---|---|
| committer | 2012-04-12 19:40:28 -0700 | |
| commit | b364be8e55a2ce0b0480e237cb9aac30bd215585 (patch) | |
| tree | c72006cf8be7bf9836d0129172204c5b8ae494b2 /libs/gui/BufferQueue.cpp | |
| parent | 016c8cbce4dde21f2703b9865f52d16b8d5d5ae2 (diff) | |
fix a typo causing pre-rotation to never work
Change-Id: I8d698ec52d53ef1a553b887c7329413e1f49cc72
Diffstat (limited to 'libs/gui/BufferQueue.cpp')
| -rw-r--r-- | libs/gui/BufferQueue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/gui/BufferQueue.cpp b/libs/gui/BufferQueue.cpp index 3c1fcc5cd3..3d80ef6c37 100644 --- a/libs/gui/BufferQueue.cpp +++ b/libs/gui/BufferQueue.cpp @@ -609,7 +609,7 @@ status_t BufferQueue::queueBuffer(int buf, mBufferHasBeenQueued = true; mDequeueCondition.broadcast(); - output->inflate(mDefaultWidth, mDefaultHeight, mDefaultHeight); + output->inflate(mDefaultWidth, mDefaultHeight, mTransformHint); ATRACE_INT(mConsumerName.string(), mQueue.size()); } // scope for the lock |