summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorDan Stoza <stoza@google.com>2015-06-23 15:44:08 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-06-23 15:44:10 +0000
commit0638a4fac7250e260c0102c770090cb7eefca936 (patch)
tree9d86278428dfa00d319dfc72d975e1b2eea2f0c5 /include
parent71997c1a921b8d55cff4581fe29743553654912b (diff)
parent231160866738f6ed2175701f300fed1a8e8e02b0 (diff)
downloadframeworks_native-0638a4fac7250e260c0102c770090cb7eefca936.zip
frameworks_native-0638a4fac7250e260c0102c770090cb7eefca936.tar.gz
frameworks_native-0638a4fac7250e260c0102c770090cb7eefca936.tar.bz2
Merge "libgui/SF: Propagate SECURE Layer flag changes" into mnc-dev
Diffstat (limited to 'include')
-rw-r--r--include/private/gui/LayerState.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/private/gui/LayerState.h b/include/private/gui/LayerState.h
index 2fa6ff9..cbe8733 100644
--- a/include/private/gui/LayerState.h
+++ b/include/private/gui/LayerState.h
@@ -39,6 +39,7 @@ struct layer_state_t {
enum {
eLayerHidden = 0x01, // SURFACE_HIDDEN in SurfaceControl.java
eLayerOpaque = 0x02, // SURFACE_OPAQUE
+ eLayerSecure = 0x80, // SECURE
};
enum {
@@ -48,10 +49,9 @@ struct layer_state_t {
eAlphaChanged = 0x00000008,
eMatrixChanged = 0x00000010,
eTransparentRegionChanged = 0x00000020,
- eVisibilityChanged = 0x00000040,
+ eFlagsChanged = 0x00000040,
eLayerStackChanged = 0x00000080,
eCropChanged = 0x00000100,
- eOpacityChanged = 0x00000200,
};
layer_state_t()