From 2d2b803a92ba531cf6c4bb7042326653255b8780 Mon Sep 17 00:00:00 2001 From: Mathias Agopian Date: Tue, 12 Oct 2010 16:05:48 -0700 Subject: implement part of [3094280] New animation for screen on and screen off add support for screen on animation Change-Id: If50cf52ae04b95b42da7d74cf7fa96d5cb54d238 --- libs/surfaceflinger_client/ISurfaceComposer.cpp | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'libs/surfaceflinger_client') diff --git a/libs/surfaceflinger_client/ISurfaceComposer.cpp b/libs/surfaceflinger_client/ISurfaceComposer.cpp index d72561f..969ee79 100644 --- a/libs/surfaceflinger_client/ISurfaceComposer.cpp +++ b/libs/surfaceflinger_client/ISurfaceComposer.cpp @@ -151,6 +151,15 @@ public: return reply.readInt32(); } + virtual status_t turnElectronBeamOn(int32_t mode) + { + Parcel data, reply; + data.writeInterfaceToken(ISurfaceComposer::getInterfaceDescriptor()); + data.writeInt32(mode); + remote()->transact(BnSurfaceComposer::TURN_ELECTRON_BEAM_ON, data, &reply); + return reply.readInt32(); + } + virtual void signal() const { Parcel data, reply; @@ -239,6 +248,12 @@ status_t BnSurfaceComposer::onTransact( status_t res = turnElectronBeamOff(mode); reply->writeInt32(res); } + case TURN_ELECTRON_BEAM_ON: { + CHECK_INTERFACE(ISurfaceComposer, data, reply); + int32_t mode = data.readInt32(); + status_t res = turnElectronBeamOn(mode); + reply->writeInt32(res); + } default: return BBinder::onTransact(code, data, reply, flags); } -- cgit v1.1