diff options
author | 2023-08-30 21:24:24 +0000 | |
---|---|---|
committer | 2023-08-30 21:24:24 +0000 | |
commit | 19bcc3a5810fb1c5c0b4f864798d802ac052d24b (patch) | |
tree | 1d1161298f3ccba7109c8a223debf3266636ef84 /libs/gui/BufferQueueProducer.cpp | |
parent | e8cf64768a6912bc746c49be9cc0be1624ce86e0 (diff) | |
parent | 02fd95c1bdf91aa9199f331a5fd8513b723d02fc (diff) |
Merge "Use String8/16 c_str [aosp-main-future]" into aosp-main-future
Diffstat (limited to 'libs/gui/BufferQueueProducer.cpp')
-rw-r--r-- | libs/gui/BufferQueueProducer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/gui/BufferQueueProducer.cpp b/libs/gui/BufferQueueProducer.cpp index cf5ad7b54f..ce5d5d382e 100644 --- a/libs/gui/BufferQueueProducer.cpp +++ b/libs/gui/BufferQueueProducer.cpp @@ -505,13 +505,13 @@ status_t BufferQueueProducer::dequeueBuffer(int* outSlot, sp<android::Fence>* ou { if (CC_UNLIKELY(ATRACE_ENABLED())) { if (buffer == nullptr) { - ATRACE_FORMAT_INSTANT("%s buffer reallocation: null", mConsumerName.string()); + ATRACE_FORMAT_INSTANT("%s buffer reallocation: null", mConsumerName.c_str()); } else { ATRACE_FORMAT_INSTANT("%s buffer reallocation actual %dx%d format:%d " "layerCount:%d " "usage:%d requested: %dx%d format:%d layerCount:%d " "usage:%d ", - mConsumerName.string(), width, height, format, + mConsumerName.c_str(), width, height, format, BQ_LAYER_COUNT, usage, buffer->getWidth(), buffer->getHeight(), buffer->getPixelFormat(), buffer->getLayerCount(), buffer->getUsage()); |