diff options
author | android-build-team Robot <android-build-team-robot@google.com> | 2021-05-13 01:07:48 +0000 |
---|---|---|
committer | android-build-team Robot <android-build-team-robot@google.com> | 2021-05-13 01:07:48 +0000 |
commit | 5a1367ea286405cfb596b50d2b418bdee154a6f4 (patch) | |
tree | 3a41f06b3c13fdc53519ece4d29a947c07676f08 /libs/hwui/renderthread/RenderProxy.cpp | |
parent | a3cae58636a3f6f331354d8bfbe1f0dcba31f535 (diff) | |
parent | 3009a4d87dee1ba5b24bed52fb74136ac2944393 (diff) |
Snap for 7357013 from 3009a4d87dee1ba5b24bed52fb74136ac2944393 to sc-release
Change-Id: I80e36a06e60537dae14e4185bc14f8040b59a310
Diffstat (limited to 'libs/hwui/renderthread/RenderProxy.cpp')
-rw-r--r-- | libs/hwui/renderthread/RenderProxy.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/hwui/renderthread/RenderProxy.cpp b/libs/hwui/renderthread/RenderProxy.cpp index 1b4b4b999f68..ad325cf2cdcc 100644 --- a/libs/hwui/renderthread/RenderProxy.cpp +++ b/libs/hwui/renderthread/RenderProxy.cpp @@ -249,10 +249,10 @@ uint32_t RenderProxy::frameTimePercentile(int percentile) { }); } -void RenderProxy::dumpGraphicsMemory(int fd) { +void RenderProxy::dumpGraphicsMemory(int fd, bool includeProfileData) { if (RenderThread::hasInstance()) { auto& thread = RenderThread::getInstance(); - thread.queue().runSync([&]() { thread.dumpGraphicsMemory(fd); }); + thread.queue().runSync([&]() { thread.dumpGraphicsMemory(fd, includeProfileData); }); } } |