summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Stoza <stoza@google.com>2015-07-29 16:15:50 -0700
committerDan Stoza <stoza@google.com>2015-07-29 16:15:50 -0700
commitd87defaf486ff4e9c0066754564851cfb7be49ed (patch)
tree1cca645ccf3ac1879ab5419086ef549638d8b380
parenta29db50c448f8d00a544b925544f3dee725f7750 (diff)
downloadnative-d87defaf486ff4e9c0066754564851cfb7be49ed.tar.gz
SF: Allow present if sideband stream changed
Allows the sideband layer to be passed all the way to HWC instead of getting blocked by the updated PTS tracking code. Bug: 22291067 Change-Id: Ic2f20a7528e276fff054e86ca35789c26873b348
-rw-r--r--services/surfaceflinger/Layer.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/services/surfaceflinger/Layer.cpp b/services/surfaceflinger/Layer.cpp
index e2418cc37d..5ff79a9e3b 100644
--- a/services/surfaceflinger/Layer.cpp
+++ b/services/surfaceflinger/Layer.cpp
@@ -1101,6 +1101,10 @@ void Layer::useEmptyDamage() {
// ----------------------------------------------------------------------------
bool Layer::shouldPresentNow(const DispSync& dispSync) const {
+ if (mSidebandStreamChanged) {
+ return true;
+ }
+
Mutex::Autolock lock(mQueueItemLock);
if (mQueueItems.empty()) {
return false;