summaryrefslogtreecommitdiffstats
path: root/include/gui
diff options
context:
space:
mode:
authorJeff Brown <jeffbrown@google.com>2012-07-16 15:38:18 -0700
committerJeff Brown <jeffbrown@google.com>2012-07-16 15:38:18 -0700
commit6501e9944df131b3b7e293007084735dfa217f24 (patch)
tree2849339f6af82a543c3e75edae089bd2c46b9e0e /include/gui
parentf9176a93a5c9061fe001c91bca50dd0a58d54f10 (diff)
downloadframeworks_native-6501e9944df131b3b7e293007084735dfa217f24.zip
frameworks_native-6501e9944df131b3b7e293007084735dfa217f24.tar.gz
frameworks_native-6501e9944df131b3b7e293007084735dfa217f24.tar.bz2
Remove freeze(), unfreeze() and setFreezeTint().
This is all dead code. Change-Id: I646673aac793a6ec45021c370a2450f0ea4fbcce
Diffstat (limited to 'include/gui')
-rw-r--r--include/gui/ISurfaceComposer.h2
-rw-r--r--include/gui/Surface.h3
-rw-r--r--include/gui/SurfaceComposerClient.h3
3 files changed, 0 insertions, 8 deletions
diff --git a/include/gui/ISurfaceComposer.h b/include/gui/ISurfaceComposer.h
index 4f32146..e12d163 100644
--- a/include/gui/ISurfaceComposer.h
+++ b/include/gui/ISurfaceComposer.h
@@ -66,13 +66,11 @@ public:
eMatrixChanged = 0x00000010,
eTransparentRegionChanged = 0x00000020,
eVisibilityChanged = 0x00000040,
- eFreezeTintChanged = 0x00000080,
eCropChanged = 0x00000100,
};
enum {
eLayerHidden = 0x01,
- eLayerFrozen = 0x02,
eLayerDither = 0x04,
eLayerFilter = 0x08,
eLayerBlurFreeze = 0x10
diff --git a/include/gui/Surface.h b/include/gui/Surface.h
index 50bdf71..7b8873a 100644
--- a/include/gui/Surface.h
+++ b/include/gui/Surface.h
@@ -65,13 +65,10 @@ public:
status_t setSize(uint32_t w, uint32_t h);
status_t hide();
status_t show(int32_t layer = -1);
- status_t freeze();
- status_t unfreeze();
status_t setFlags(uint32_t flags, uint32_t mask);
status_t setTransparentRegionHint(const Region& transparent);
status_t setAlpha(float alpha=1.0f);
status_t setMatrix(float dsdx, float dtdx, float dsdy, float dtdy);
- status_t setFreezeTint(uint32_t tint);
status_t setCrop(const Rect& crop);
static status_t writeSurfaceToParcel(
diff --git a/include/gui/SurfaceComposerClient.h b/include/gui/SurfaceComposerClient.h
index c1c34f7..9f3ef35 100644
--- a/include/gui/SurfaceComposerClient.h
+++ b/include/gui/SurfaceComposerClient.h
@@ -111,13 +111,10 @@ public:
status_t hide(SurfaceID id);
status_t show(SurfaceID id, int32_t layer = -1);
- status_t freeze(SurfaceID id);
- status_t unfreeze(SurfaceID id);
status_t setFlags(SurfaceID id, uint32_t flags, uint32_t mask);
status_t setTransparentRegionHint(SurfaceID id, const Region& transparent);
status_t setLayer(SurfaceID id, int32_t layer);
status_t setAlpha(SurfaceID id, float alpha=1.0f);
- status_t setFreezeTint(SurfaceID id, uint32_t tint);
status_t setMatrix(SurfaceID id, float dsdx, float dtdx, float dsdy, float dtdy);
status_t setPosition(SurfaceID id, float x, float y);
status_t setSize(SurfaceID id, uint32_t w, uint32_t h);