summaryrefslogtreecommitdiff
path: root/libs/hwui/renderthread/RenderProxy.cpp
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2021-05-13 01:07:48 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2021-05-13 01:07:48 +0000
commit5a1367ea286405cfb596b50d2b418bdee154a6f4 (patch)
tree3a41f06b3c13fdc53519ece4d29a947c07676f08 /libs/hwui/renderthread/RenderProxy.cpp
parenta3cae58636a3f6f331354d8bfbe1f0dcba31f535 (diff)
parent3009a4d87dee1ba5b24bed52fb74136ac2944393 (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.cpp4
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); });
}
}