diff options
author | Mathias Agopian <mathias@google.com> | 2010-10-11 12:37:43 -0700 |
---|---|---|
committer | Joe Onorato <joeo@android.com> | 2010-10-12 14:16:11 -0700 |
commit | aab758e87991d1460ca94d4a5f22c0ef34641e2d (patch) | |
tree | 560d9e47119175b6a5618dd16d9d9ac4a92145fd /libs/surfaceflinger_client | |
parent | 844a6b3ccaff1ad1443ad985e4527b733ce97c0e (diff) | |
download | frameworks_base-aab758e87991d1460ca94d4a5f22c0ef34641e2d.zip frameworks_base-aab758e87991d1460ca94d4a5f22c0ef34641e2d.tar.gz frameworks_base-aab758e87991d1460ca94d4a5f22c0ef34641e2d.tar.bz2 |
turn off the electron beam
Change-Id: I335fb6719f1d5a3f1c6f37a046fd1c2c4ed2bbc6
Diffstat (limited to 'libs/surfaceflinger_client')
-rw-r--r-- | libs/surfaceflinger_client/ISurfaceComposer.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libs/surfaceflinger_client/ISurfaceComposer.cpp b/libs/surfaceflinger_client/ISurfaceComposer.cpp index d676f5e..d72561f 100644 --- a/libs/surfaceflinger_client/ISurfaceComposer.cpp +++ b/libs/surfaceflinger_client/ISurfaceComposer.cpp @@ -142,6 +142,15 @@ public: return reply.readInt32(); } + virtual status_t turnElectronBeamOff(int32_t mode) + { + Parcel data, reply; + data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor()); + data.writeInt32(mode); + remote()->transact(BnSurfaceComposer::TURN_ELECTRON_BEAM_OFF, data, &reply); + return reply.readInt32(); + } + virtual void signal() const { Parcel data, reply; @@ -224,6 +233,12 @@ status_t BnSurfaceComposer::onTransact( reply->writeInt32(f); reply->writeInt32(res); } break; + case TURN_ELECTRON_BEAM_OFF: { + CHECK_INTERFACE(ISurfaceComposer, data, reply); + int32_t mode = data.readInt32(); + status_t res = turnElectronBeamOff(mode); + reply->writeInt32(res); + } default: return BBinder::onTransact(code, data, reply, flags); } |