summaryrefslogtreecommitdiffstats
path: root/include/private
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2012-08-16 20:57:39 -0700
committerMathias Agopian <mathias@google.com>2012-08-16 20:58:57 -0700
commit818b46058aa3006e1d3c178abd36d4f10823f5d9 (patch)
tree741368663f57ef8ed8dd4f46cc1e781686885a8b /include/private
parent111b2d89221722d38f5b5b3ba65904ec22421839 (diff)
downloadframeworks_native-818b46058aa3006e1d3c178abd36d4f10823f5d9.zip
frameworks_native-818b46058aa3006e1d3c178abd36d4f10823f5d9.tar.gz
frameworks_native-818b46058aa3006e1d3c178abd36d4f10823f5d9.tar.bz2
display states can't share the dirty flags
Change-Id: Ifade9f2f1a0df9a36aede77a6cf5eee4be534f98
Diffstat (limited to 'include/private')
-rw-r--r--include/private/gui/LayerState.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/include/private/gui/LayerState.h b/include/private/gui/LayerState.h
index 9765e28..65d9eb3 100644
--- a/include/private/gui/LayerState.h
+++ b/include/private/gui/LayerState.h
@@ -107,9 +107,11 @@ struct DisplayState {
};
enum {
- eSurfaceChanged = 0x1,
- eLayerStackChanged = 0x2,
- eTransformChanged = 0x4
+ eSurfaceChanged = 0x01,
+ eLayerStackChanged = 0x02,
+ eOrientationChanged = 0x04,
+ eViewportChanged = 0x08,
+ eFrameChanged = 0x10
};
uint32_t what;