diff options
| author | 2011-01-19 16:31:32 -0800 | |
|---|---|---|
| committer | 2011-01-19 16:31:32 -0800 | |
| commit | 6918b0b9b31e09cef675ad5aed0591ecda333d0c (patch) | |
| tree | 262ca54f0bc29e66d47915b9aa11d4c4d3d42e07 /services/surfaceflinger/LayerBase.cpp | |
| parent | 800da1b4338752777b90b1a1780ed508b15424af (diff) | |
| parent | 48b888aab9fdcfba250722dffbdffe61f11c64f3 (diff) | |
Merge "improve SurfaceFlinger 'dumpsys' log" into honeycomb
Diffstat (limited to 'services/surfaceflinger/LayerBase.cpp')
| -rw-r--r-- | services/surfaceflinger/LayerBase.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/services/surfaceflinger/LayerBase.cpp b/services/surfaceflinger/LayerBase.cpp index 0c1fcf9124..9ddb05f3b0 100644 --- a/services/surfaceflinger/LayerBase.cpp +++ b/services/surfaceflinger/LayerBase.cpp @@ -534,6 +534,12 @@ void LayerBase::dump(String8& result, char* buffer, size_t SIZE) const result.append(buffer); } +void LayerBase::shortDump(String8& result, char* scratch, size_t size) const +{ + LayerBase::dump(result, scratch, size); +} + + // --------------------------------------------------------------------------- int32_t LayerBaseClient::sIdentity = 1; @@ -585,6 +591,12 @@ void LayerBaseClient::dump(String8& result, char* buffer, size_t SIZE) const result.append(buffer); } + +void LayerBaseClient::shortDump(String8& result, char* scratch, size_t size) const +{ + LayerBaseClient::dump(result, scratch, size); +} + // --------------------------------------------------------------------------- LayerBaseClient::Surface::Surface( |