diff options
author | Chris Craik <ccraik@google.com> | 2016-01-14 10:04:08 -0800 |
---|---|---|
committer | Chris Craik <ccraik@google.com> | 2016-01-14 10:29:38 -0800 |
commit | ff3edce12d3081517e9a724cc18a0de58af5187a (patch) | |
tree | 5824da9e04337f1e58b4994ec74da9eb9f48da8a /libs/hwui/renderthread/RenderProxy.cpp | |
parent | 477e26cf931290f6b3353fab43a05406eea223f9 (diff) |
Log render pipeline in gfxinfo dump
Change-Id: Ia50c445b29d918f274ec45632d61d8b8479c72eb
Diffstat (limited to 'libs/hwui/renderthread/RenderProxy.cpp')
-rw-r--r-- | libs/hwui/renderthread/RenderProxy.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libs/hwui/renderthread/RenderProxy.cpp b/libs/hwui/renderthread/RenderProxy.cpp index 43282c99803a..72c7e4eedef1 100644 --- a/libs/hwui/renderthread/RenderProxy.cpp +++ b/libs/hwui/renderthread/RenderProxy.cpp @@ -450,6 +450,11 @@ CREATE_BRIDGE2(dumpGraphicsMemory, int fd, RenderThread* thread) { } else { fprintf(file, "\nNo caches instance.\n"); } +#if HWUI_NEW_OPS + fprintf(file, "\nPipeline=FrameBuilder\n"); +#else + fprintf(file, "\nPipeline=OpenGLRenderer\n"); +#endif fflush(file); return nullptr; } |