diff options
author | Mathias Agopian <mathias@google.com> | 2011-10-13 16:02:48 -0700 |
---|---|---|
committer | Mathias Agopian <mathias@google.com> | 2011-10-14 14:32:48 -0700 |
commit | f171ab6da9cf9793093e50947aacdab8f2b0c9b2 (patch) | |
tree | 35cf7565261f9b2bf0019e7d67439ae4188b7e2b /include/surfaceflinger | |
parent | 5850db5e08feeae87a8c0ef264ef86b5e43f4cfc (diff) | |
download | frameworks_native-f171ab6da9cf9793093e50947aacdab8f2b0c9b2.zip frameworks_native-f171ab6da9cf9793093e50947aacdab8f2b0c9b2.tar.gz frameworks_native-f171ab6da9cf9793093e50947aacdab8f2b0c9b2.tar.bz2 |
Add a LayerScreenshot
A LayerScreenshot is a special type of layer that contains a screenshot of
the screen acquired when its created. It works just like LayerDim.
Bug: 5446982
Change-Id: I7814aff2380e7e146937f2b641907be2a30c76cc
Diffstat (limited to 'include/surfaceflinger')
-rw-r--r-- | include/surfaceflinger/ISurfaceComposer.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/surfaceflinger/ISurfaceComposer.h b/include/surfaceflinger/ISurfaceComposer.h index ea022a6..e7a33f1 100644 --- a/include/surfaceflinger/ISurfaceComposer.h +++ b/include/surfaceflinger/ISurfaceComposer.h @@ -53,6 +53,7 @@ public: eFXSurfaceNormal = 0x00000000, eFXSurfaceBlur = 0x00010000, eFXSurfaceDim = 0x00020000, + eFXSurfaceScreenshot= 0x00030000, eFXSurfaceMask = 0x000F0000, }; |