summaryrefslogtreecommitdiffstats
path: root/libs/surfaceflinger/LayerBase.cpp
diff options
context:
space:
mode:
authorMathias Agopian <mathias@google.com>2010-05-26 22:19:19 -0700
committerMathias Agopian <mathias@google.com>2010-05-26 22:19:19 -0700
commit7d1508b854dff2b9b3469b5eef7e2123eada1cd7 (patch)
tree7929ad907515ffa138023614a2163d219e1f4dcc /libs/surfaceflinger/LayerBase.cpp
parent923770333574fd71674781a9a62f40e8acaf5ef1 (diff)
downloadframeworks_base-7d1508b854dff2b9b3469b5eef7e2123eada1cd7.zip
frameworks_base-7d1508b854dff2b9b3469b5eef7e2123eada1cd7.tar.gz
frameworks_base-7d1508b854dff2b9b3469b5eef7e2123eada1cd7.tar.bz2
clean-up dead-code
Diffstat (limited to 'libs/surfaceflinger/LayerBase.cpp')
-rw-r--r--libs/surfaceflinger/LayerBase.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/libs/surfaceflinger/LayerBase.cpp b/libs/surfaceflinger/LayerBase.cpp
index 79aaa77..ebce711 100644
--- a/libs/surfaceflinger/LayerBase.cpp
+++ b/libs/surfaceflinger/LayerBase.cpp
@@ -42,7 +42,6 @@ namespace android {
LayerBase::LayerBase(SurfaceFlinger* flinger, DisplayID display)
: dpy(display), contentDirty(false),
mFlinger(flinger),
- mTransformed(false),
mNeedsFiltering(false),
mOrientation(0),
mLeft(0), mTop(0),
@@ -259,7 +258,6 @@ void LayerBase::validateVisibility(const Transform& planeTransform)
// cache a few things...
mOrientation = tr.getOrientation();
mTransformedBounds = tr.makeBounds(w, h);
- mTransformed = transformed;
mLeft = tr.tx();
mTop = tr.ty();
}