summaryrefslogtreecommitdiffstats
path: root/services/surfaceflinger/DisplayDevice.h
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2012-08-27 16:28:24 -0700
committerMathias Agopian <mathias@google.com>2012-08-27 17:43:43 -0700
commit3ee454a7bef8bd3d1c9cdd9d17108eb80ebadf2a (patch)
tree008181467301126011532e5a7e7ac703b54c81d1 /services/surfaceflinger/DisplayDevice.h
parenta50b51c03aca449920fc8581a738032a7bce7150 (diff)
downloadframeworks_native-3ee454a7bef8bd3d1c9cdd9d17108eb80ebadf2a.zip
frameworks_native-3ee454a7bef8bd3d1c9cdd9d17108eb80ebadf2a.tar.gz
frameworks_native-3ee454a7bef8bd3d1c9cdd9d17108eb80ebadf2a.tar.bz2
Eradicate DisplayID.
DisplayDevices are now keyed of the wp<IBinder> the client uses. DisplayID has now become DisplayType which is just used to identify physical displays (as opposed to virtual displays such as wifi displays). Change-Id: I0c5968f2c902dcd699a7e0afacf833ff070c12ea
Diffstat (limited to 'services/surfaceflinger/DisplayDevice.h')
-rw-r--r--services/surfaceflinger/DisplayDevice.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/services/surfaceflinger/DisplayDevice.h b/services/surfaceflinger/DisplayDevice.h
index ea56d90..b742b13 100644
--- a/services/surfaceflinger/DisplayDevice.h
+++ b/services/surfaceflinger/DisplayDevice.h
@@ -51,10 +51,12 @@ public:
// region in screen space
Region undefinedRegion;
- enum {
- DISPLAY_ID_MAIN = HWC_DISPLAY_PRIMARY,
- DISPLAY_ID_HDMI = HWC_DISPLAY_EXTERNAL,
- DISPLAY_ID_COUNT = HWC_NUM_DISPLAY_TYPES
+ enum DisplayType {
+ DISPLAY_ID_INVALID = -1,
+ DISPLAY_PRIMARY = HWC_DISPLAY_PRIMARY,
+ DISPLAY_EXTERNAL = HWC_DISPLAY_EXTERNAL,
+ NUM_DISPLAY_TYPES = HWC_NUM_DISPLAY_TYPES,
+ DISPLAY_VIRTUAL = HWC_NUM_DISPLAY_TYPES
};
enum {
@@ -64,7 +66,7 @@ public:
DisplayDevice(
const sp<SurfaceFlinger>& flinger,
- int32_t dpy, int32_t hwcDisplayId,
+ DisplayType type, const wp<IBinder>& displayToken,
const sp<ANativeWindow>& nativeWindow,
const sp<FramebufferSurface>& framebufferSurface,
EGLConfig config);
@@ -87,7 +89,7 @@ public:
EGLSurface getEGLSurface() const;
void setVisibleLayersSortedByZ(const Vector< sp<LayerBase> >& layers);
- Vector< sp<LayerBase> > getVisibleLayersSortedByZ() const;
+ const Vector< sp<LayerBase> >& getVisibleLayersSortedByZ() const;
bool getSecureLayerVisible() const;
Region getDirtyRegion(bool repaintEverything) const;
@@ -97,8 +99,9 @@ public:
int getOrientation() const { return mOrientation; }
const Transform& getTransform() const { return mGlobalTransform; }
uint32_t getLayerStack() const { return mLayerStack; }
- int32_t getDisplayId() const { return mId; }
+ int32_t getDisplayType() const { return mType; }
int32_t getHwcDisplayId() const { return mHwcDisplayId; }
+ const wp<IBinder>& getDisplayToken() const { return mDisplayToken; }
status_t compositionComplete() const;
@@ -123,10 +126,6 @@ public:
uint32_t getPageFlipCount() const;
void dump(String8& res) const;
- inline bool operator < (const DisplayDevice& rhs) const {
- return mId < rhs.mId;
- }
-
private:
void init(EGLConfig config);
@@ -134,8 +133,9 @@ private:
* Constants, set during initialization
*/
sp<SurfaceFlinger> mFlinger;
- int32_t mId;
+ DisplayType mType;
int32_t mHwcDisplayId;
+ wp<IBinder> mDisplayToken;
// ANativeWindow this display is rendering into
sp<ANativeWindow> mNativeWindow;