diff options
author | Mathias Agopian <mathias@google.com> | 2010-06-08 19:54:15 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2010-06-08 20:10:02 -0700 |
commit | 5e14010b1fc066dfcbc0a577d59492687c99667d (patch) | |
tree | 221d256bf258e97b3e7e7c953a679a9104792374 /include/surfaceflinger | |
parent | 1debc66521f699bbf0a8eb80cababaef8bc63607 (diff) | |
download | frameworks_base-5e14010b1fc066dfcbc0a577d59492687c99667d.zip frameworks_base-5e14010b1fc066dfcbc0a577d59492687c99667d.tar.gz frameworks_base-5e14010b1fc066dfcbc0a577d59492687c99667d.tar.bz2 |
allow re-targetting of surfaces
Surfaces can now be parcelized and sent to remote
processes. When a surface crosses a process
boundary, it looses its connection with the
current process and gets attached to the new one.
Change-Id: I39c7b055bcd3ea1162ef2718d3d4b866bf7c81c0
Diffstat (limited to 'include/surfaceflinger')
-rw-r--r-- | include/surfaceflinger/Surface.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/surfaceflinger/Surface.h b/include/surfaceflinger/Surface.h index ac01ce5..f333911 100644 --- a/include/surfaceflinger/Surface.h +++ b/include/surfaceflinger/Surface.h @@ -60,7 +60,6 @@ public: static bool isSameSurface( const sp<SurfaceControl>& lhs, const sp<SurfaceControl>& rhs); - SurfaceID ID() const { return mToken; } uint32_t getFlags() const { return mFlags; } uint32_t getIdentity() const { return mIdentity; } @@ -145,6 +144,9 @@ public: uint32_t reserved[2]; }; + static status_t writeToParcel( + const sp<Surface>& control, Parcel* parcel); + static sp<Surface> readFromParcel( const Parcel& data, const sp<Surface>& other); @@ -153,7 +155,6 @@ public: } bool isValid(); - SurfaceID ID() const { return mToken; } uint32_t getFlags() const { return mFlags; } uint32_t getIdentity() const { return mIdentity; } @@ -267,7 +268,6 @@ private: SharedBufferClient* mSharedBufferClient; status_t mInitCheck; sp<ISurface> mSurface; - SurfaceID mToken; uint32_t mIdentity; PixelFormat mFormat; uint32_t mFlags; |