diff options
| author | 2020-12-11 03:33:09 +0000 | |
|---|---|---|
| committer | 2020-12-11 03:33:09 +0000 | |
| commit | 5590c8a02c29ea7ef83d826c795ef810f560ac8e (patch) | |
| tree | b52ec6f2e97a05b47c92d93a0a33e0cb281f4b09 | |
| parent | c14d27b0dba6ca31fa5d559f8783ad3219166606 (diff) | |
| parent | 8304f7f005c27dd1302f0080dba533af3252c135 (diff) | |
Merge "BLASTBufferQueue: Set consumerIsApp to false"
| -rw-r--r-- | libs/gui/BLASTBufferQueue.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/gui/BLASTBufferQueue.cpp b/libs/gui/BLASTBufferQueue.cpp index b9ab5613c6..0897e6d6cb 100644 --- a/libs/gui/BLASTBufferQueue.cpp +++ b/libs/gui/BLASTBufferQueue.cpp @@ -123,7 +123,7 @@ BLASTBufferQueue::BLASTBufferQueue(const std::string& name, const sp<SurfaceCont mProducer->setMaxDequeuedBufferCount(2); } mBufferItemConsumer = - new BLASTBufferItemConsumer(mConsumer, GraphicBuffer::USAGE_HW_COMPOSER, 1, true); + new BLASTBufferItemConsumer(mConsumer, GraphicBuffer::USAGE_HW_COMPOSER, 1, false); static int32_t id = 0; auto consumerName = mName + "(BLAST Consumer)" + std::to_string(id); id++; |