| commit | 94720d7ec40d2b5ee200d95a46588cdb0fb30e66 | [log] [tgz] |
|---|---|---|
| author | Erik Gilling <konkers@android.com> | Wed Dec 01 16:38:01 2010 -0800 |
| committer | Erik Gilling <konkers@android.com> | Wed Dec 08 15:40:11 2010 -0800 |
| tree | 48c53514ce6f4eb1012a38ec8fd9b422d7937897 | |
| parent | 882754e8cc5833e19696271d612b4b9eabcc5bb3 [diff] [blame] |
surfaceflinger: add support for gralloc dump hooks Change-Id: Ib6f539ed0132b70d040d653c03d52cc04249ac3c
diff --git a/services/surfaceflinger/DisplayHardware/DisplayHardware.cpp b/services/surfaceflinger/DisplayHardware/DisplayHardware.cpp index 8926c03..58751be 100644 --- a/services/surfaceflinger/DisplayHardware/DisplayHardware.cpp +++ b/services/surfaceflinger/DisplayHardware/DisplayHardware.cpp
@@ -367,3 +367,8 @@ { eglMakeCurrent(mDisplay, mSurface, mSurface, mContext); } + +void DisplayHardware::dump(String8& res) const +{ + mNativeWindow->dump(res); +}