diff options
author | Mathias Agopian <mathias@google.com> | 2010-10-12 16:05:48 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2010-10-13 14:28:26 -0700 |
commit | 9daa5c9b9dd286cbbf5d43f7e45a5e9e4048e855 (patch) | |
tree | e8998b2916314f74f69231ca54ab93e2af5c11ef /include | |
parent | 137ef22cef9a78b2e3672d6124967112d4bae1ef (diff) | |
download | frameworks_native-9daa5c9b9dd286cbbf5d43f7e45a5e9e4048e855.zip frameworks_native-9daa5c9b9dd286cbbf5d43f7e45a5e9e4048e855.tar.gz frameworks_native-9daa5c9b9dd286cbbf5d43f7e45a5e9e4048e855.tar.bz2 |
implement part of [3094280] New animation for screen on and screen off
add support for screen on animation
Change-Id: If50cf52ae04b95b42da7d74cf7fa96d5cb54d238
Diffstat (limited to 'include')
-rw-r--r-- | include/surfaceflinger/ISurfaceComposer.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/surfaceflinger/ISurfaceComposer.h b/include/surfaceflinger/ISurfaceComposer.h index 1a1821c..de447be 100644 --- a/include/surfaceflinger/ISurfaceComposer.h +++ b/include/surfaceflinger/ISurfaceComposer.h @@ -119,6 +119,7 @@ public: uint32_t reqWidth, uint32_t reqHeight) = 0; virtual status_t turnElectronBeamOff(int32_t mode) = 0; + virtual status_t turnElectronBeamOn(int32_t mode) = 0; /* Signal surfaceflinger that there might be some work to do * This is an ASYNCHRONOUS call. @@ -145,7 +146,8 @@ public: UNFREEZE_DISPLAY, SIGNAL, CAPTURE_SCREEN, - TURN_ELECTRON_BEAM_OFF + TURN_ELECTRON_BEAM_OFF, + TURN_ELECTRON_BEAM_ON }; virtual status_t onTransact( uint32_t code, |