diff options
| author | 2021-06-30 14:46:24 +0000 | |
|---|---|---|
| committer | 2021-06-30 14:46:24 +0000 | |
| commit | 5d356b04e4d1e5899e18c221bb3e1244037d442a (patch) | |
| tree | 4b626dcb8f80d5eed600dca67903465d54d9b5b3 /libs/gui/BLASTBufferQueue.cpp | |
| parent | 3e27b3c6f5d0e82b34e6b9c41473b9814e1c31e1 (diff) | |
| parent | 3277faf86d598a2ee1080b0bb4dd476fe1fddba8 (diff) | |
Merge "Renamed and moved InputWindow and related files" into sc-v2-dev
Diffstat (limited to 'libs/gui/BLASTBufferQueue.cpp')
| -rw-r--r-- | libs/gui/BLASTBufferQueue.cpp | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/libs/gui/BLASTBufferQueue.cpp b/libs/gui/BLASTBufferQueue.cpp index ac8feaa0c2..ebc436f913 100644 --- a/libs/gui/BLASTBufferQueue.cpp +++ b/libs/gui/BLASTBufferQueue.cpp @@ -38,7 +38,7 @@  using namespace std::chrono_literals;  namespace { -inline const char* toString(bool b) { +inline const char* boolToString(bool b) {      return b ? "true" : "false";  }  } // namespace @@ -516,7 +516,7 @@ void BLASTBufferQueue::processNextBufferLocked(bool useNextTransaction) {      BQA_LOGV("processNextBufferLocked size=%dx%d mFrameNumber=%" PRIu64               " applyTransaction=%s mTimestamp=%" PRId64 "%s mPendingTransactions.size=%d"               " graphicBufferId=%" PRIu64 "%s", -             mSize.width, mSize.height, bufferItem.mFrameNumber, toString(applyTransaction), +             mSize.width, mSize.height, bufferItem.mFrameNumber, boolToString(applyTransaction),               bufferItem.mTimestamp, bufferItem.mIsAutoTimestamp ? "(auto)" : "",               static_cast<uint32_t>(mPendingTransactions.size()), bufferItem.mGraphicBuffer->getId(),               bufferItem.mAutoRefresh ? " mAutoRefresh" : ""); @@ -546,7 +546,7 @@ void BLASTBufferQueue::onFrameAvailable(const BufferItem& item) {                 mNumFrameAvailable + mNumAcquired - mPendingRelease.size());      BQA_LOGV("onFrameAvailable framenumber=%" PRIu64 " nextTransactionSet=%s", item.mFrameNumber, -             toString(nextTransactionSet)); +             boolToString(nextTransactionSet));      processNextBufferLocked(nextTransactionSet /* useNextTransaction */);  } |