commit | 2375002a5c5e5240e4799ff71e51454352799c19 | [log] [tgz] |
---|---|---|
author | John Reck <jreck@google.com> | Tue Nov 21 18:30:35 2023 -0500 |
committer | John Reck <jreck@google.com> | Tue Nov 21 18:30:59 2023 -0500 |
tree | 0ff228d3a146073e02e47e04b5fc295814203b10 | |
parent | e749187514b90ad38193d902fcd603cf1aaf6a4b [diff] [blame] |
Fix some libhwui build warnings Fixes: 243390200 Test: make Change-Id: I0150737e744016d56f8f4c4464d90b29b8505344
diff --git a/libs/hwui/renderthread/RenderThread.cpp b/libs/hwui/renderthread/RenderThread.cpp index f76ea06..623ee4e 100644 --- a/libs/hwui/renderthread/RenderThread.cpp +++ b/libs/hwui/renderthread/RenderThread.cpp
@@ -150,7 +150,7 @@ ATRACE_FORMAT("queue mFrameCallbackTask to run after %.2fms", toFloatMillis(runAt - SteadyClock::now()).count()); queue().postAt(toNsecs_t(runAt.time_since_epoch()).count(), - [=]() { dispatchFrameCallbacks(); }); + [this]() { dispatchFrameCallbacks(); }); } }