summaryrefslogtreecommitdiffstats
path: root/libs/gui/ISurfaceComposerClient.cpp
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2011-07-20 16:46:11 -0700
committerMathias Agopian <mathias@google.com>2011-07-20 16:53:13 -0700
commit50c24a2000c785f8be2367e1fc7938a5eda5c9e8 (patch)
tree4f6b33dae6fad115e014290b2535c0b931c9d0a1 /libs/gui/ISurfaceComposerClient.cpp
parentf07b8a3f691be39083fb5163f9456bcfa566f93f (diff)
downloadframeworks_base-50c24a2000c785f8be2367e1fc7938a5eda5c9e8.zip
frameworks_base-50c24a2000c785f8be2367e1fc7938a5eda5c9e8.tar.gz
frameworks_base-50c24a2000c785f8be2367e1fc7938a5eda5c9e8.tar.bz2
clean-up. get rid ofunused code and members in Surface[Control].cpp
Change-Id: Ia7790ae28af2c2ac99eae01c2c5044ace4a490a4
Diffstat (limited to 'libs/gui/ISurfaceComposerClient.cpp')
-rw-r--r--libs/gui/ISurfaceComposerClient.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/libs/gui/ISurfaceComposerClient.cpp b/libs/gui/ISurfaceComposerClient.cpp
index bc97cac..ace16aa 100644
--- a/libs/gui/ISurfaceComposerClient.cpp
+++ b/libs/gui/ISurfaceComposerClient.cpp
@@ -132,9 +132,6 @@ status_t ISurfaceComposerClient::surface_data_t::readFromParcel(const Parcel& pa
{
token = parcel.readInt32();
identity = parcel.readInt32();
- width = parcel.readInt32();
- height = parcel.readInt32();
- format = parcel.readInt32();
return NO_ERROR;
}
@@ -142,9 +139,6 @@ status_t ISurfaceComposerClient::surface_data_t::writeToParcel(Parcel* parcel) c
{
parcel->writeInt32(token);
parcel->writeInt32(identity);
- parcel->writeInt32(width);
- parcel->writeInt32(height);
- parcel->writeInt32(format);
return NO_ERROR;
}