summaryrefslogtreecommitdiffstats
path: root/services/surfaceflinger/DisplayDevice.h
diff options
context:
space:
mode:
Diffstat (limited to 'services/surfaceflinger/DisplayDevice.h')
-rw-r--r--services/surfaceflinger/DisplayDevice.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/services/surfaceflinger/DisplayDevice.h b/services/surfaceflinger/DisplayDevice.h
index f492a42..9023ce9 100644
--- a/services/surfaceflinger/DisplayDevice.h
+++ b/services/surfaceflinger/DisplayDevice.h
@@ -126,8 +126,8 @@ public:
int32_t getHwcDisplayId() const { return mHwcDisplayId; }
const wp<IBinder>& getDisplayToken() const { return mDisplayToken; }
- bool isPanelInverseMounted() const {
- return mPanelInverseMounted;
+ uint32_t getPanelMountFlip() const {
+ return mPanelMountFlip;
}
// We pass in mustRecompose so we can keep VirtualDisplaySurface's state
@@ -230,8 +230,8 @@ private:
int mPowerMode;
// Current active config
int mActiveConfig;
- // Panel is inverse mounted
- int mPanelInverseMounted;
+ // Panel's mount flip, H, V or 180 (HV)
+ uint32_t mPanelMountFlip;
};
}; // namespace android