diff options
| author | 2009-03-27 16:10:37 -0700 | |
|---|---|---|
| committer | 2009-03-27 16:10:37 -0700 | |
| commit | 24fd77d44088011c88c55a5de459e75792bb2ecb (patch) | |
| tree | 9e814e309f97b869d3c558f719a05d63d4707edd /libs/ui/SurfaceComposerClient.cpp | |
| parent | ecbeaa0cf1cd0bf1bcb00bb25502137db5a9847f (diff) | |
AI 143171: am: CL 142873 fix [1732012] Only show screen rotation animation when triggered by sensor
Original author: mathias
Merged from: //branches/cupcake/...
Automated import of CL 143171
Diffstat (limited to 'libs/ui/SurfaceComposerClient.cpp')
| -rw-r--r-- | libs/ui/SurfaceComposerClient.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libs/ui/SurfaceComposerClient.cpp b/libs/ui/SurfaceComposerClient.cpp index 9354a7a40d..fe803ff249 100644 --- a/libs/ui/SurfaceComposerClient.cpp +++ b/libs/ui/SurfaceComposerClient.cpp @@ -813,10 +813,11 @@ status_t SurfaceComposerClient::unfreezeDisplay(DisplayID dpy, uint32_t flags) return sm->unfreezeDisplay(dpy, flags); } -int SurfaceComposerClient::setOrientation(DisplayID dpy, int orientation) +int SurfaceComposerClient::setOrientation(DisplayID dpy, + int orientation, uint32_t flags) { const sp<ISurfaceComposer>& sm(_get_surface_manager()); - return sm->setOrientation(dpy, orientation); + return sm->setOrientation(dpy, orientation, flags); } status_t SurfaceComposerClient::openTransaction() |